function loadReq(){
	var xmlReq;
	if (window.ActiveXObject){
	 xmlReq = new ActiveXObject("Microsoft.XMLHTTP");
	}
	else if (window.XMLHttpRequest){
	 xmlReq = new XMLHttpRequest();
	}
	return xmlReq;
}
function addHits(id,type){
	var httpReq;
	httpReq=loadReq();
	httpReq.open("GET",("/webHits.aspx?id="+id+"&type="+type),false);
	//httpReq.onreadystatechange=HttpHandler1;
	httpReq.send(null);
}