function incr_counter(id)
{
	var httpxml;
try
  {
  // Firefox, Opera 8.0+, Safari
  httpxml=new XMLHttpRequest();
  }
catch (e)
  {
// Internet Explorer
		  try
   			{
   				httpxml=new ActiveXObject("Msxml2.XMLHTTP");
    		}
  			catch (e)
    				{
    	  try
      		{
      		httpxml=new ActiveXObject("Microsoft.XMLHTTP");
     		}
    		catch (e)
      		{
      		alert("Your browser does not support AJAX!");
      		return false;
      		}
    		}
  }
function stateck() 
    {
	if (httpxml.readyState==3 || httpxml.readyState==2 || httpxml.readyState==1)
	{ 
		
		
	}
    if(httpxml.readyState==4)
    {
			
    }
}
var url="counter.php";
url=url+"?id="+id;
httpxml.onreadystatechange=stateck;
httpxml.open("GET",url,true);
httpxml.send(null);
}