var reportSession_xmlhttp = null;

function reportSession(){
	try{
		var url = "http://www.abacushk.com/reportSession.asp";
		try{
			reportSession_xmlhttp = new XMLHttpRequest();
		}catch(ex1){
			reportSession_xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		}
		
		reportSession_xmlhttp.onreadystatechange = reportSession_onreadystatechange;
		reportSession_xmlhttp.open("GET",url,true);
		reportSession_xmlhttp.send(null);
	}catch(ex){
	}
}

function reportSession_onreadystatechange(){
	if(reportSession_xmlhttp.readyState  == 4){
		if(reportSession_xmlhttp.status  == 200){
//			alert(reportSession_xmlhttp.responseText);
		}else{
//			alert(reportSession_xmlhttp.reportSession_xmlhttp.status);
		}
	}
}

setInterval("reportSession();",60000);

