function tongji(para)

{

	//alert(para)

	var geid = para;


		try

		{

			xmlhttp=new ActiveXObject('Msxml2.XMLHTTP');

		}

		catch(e)

		{

			try

			{

				xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');

			}

			catch(e)

			{

				try

				{

					xmlhttp = new XMLHttpRequest();

				}

				catch(e){}

			}

		}







		xmlhttp.open("POST","wenxue/tongji.php",true);

		xmlhttp.setRequestHeader('Content-type','application/x-www-form-urlencoded');

		xmlhttp.send("id="+geid+"&timestamp="+new Date().getTime());
		xmlhttp.onreadystatechange = function(){
               if (xmlhttp.readyState==4)

			       {if(xmlhttp.status==200)

				     {if(xmlhttp.responseText==1)

					{   return true;
						window.location.reload();
                     }

					if(xmlhttp.responseText==0)

					{}
					}}}}
