

function AddHit(id)
{
	var xmlHttp;
	 
	
	 
	try // ff, opera8+,safari
  {  
  	 xmlHttp=new XMLHttpRequest();  
  	
  }
catch (e) // IE
 {  
  	try
  	{
     	xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    } 
    catch (e)
    {  
  	  try
      {     
      	xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");      
      }
    	catch (e)
      {   
      	  alert("Your browser does not support AJAX!");      return false;      
      } 
    }
 }

 
 
		xmlHttp.onreadystatechange=function()
		{
		   if(xmlHttp.readyState==4)
		   {
		      
		      	
		    }
		}
		
		xmlHttp.open("GET","hitter.php?bid="+id,true);
		xmlHttp.send(null); 

}


function CloseBanner()
{
	document.getElementById('banner').style.display='none';
}

