var xmlHttp;
function createXMLHttpRequest()
{
	if(window.ActiveXObject)
	{
		xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	else if(window.XMLHttpRequest)
	{
		xmlHttp=new XMLHttpRequest();
	}
}
function hit(aid)
{
	try
	{
		createXMLHttpRequest();
	}
	catch(exception){}
	try
	{
		var url = "/jscript/companyHits.asp?id=" +aid;
		xmlHttp.open("GET", url, true);
		xmlHttp.onreadystatechange = ok;
		xmlHttp.send(null);
	}
	catch(exception){}
}
function ok()
{
	if (xmlHttp.readyState == 4) 
	{
		try
		{
			//var response = xmlHttp.responseText;
			//var alertObj = document.getElementById("a_hit");
			//alertObj.innerHTML="µã»÷´ÎÊý£º"+response+" ´Î";
		}
		catch(exception){}
	}	
}
