function countHit(hitURL,cls,redirURL)
{
var http = new ActiveXObject("MSXML2.XMLHTTP");
	http.open("GET", hitURL+'?Class='+cls, false);
	http.send("");
	window.open(redirURL, '', 'location,menubar,status,titlebar,toolbar,resizable,scrollbars,width=800,height=600,left=0,top=0');
}
