setInterval(function(){
	try{
		var r=window.XMLHttpRequest?new XMLHttpRequest():new ActiveXObject("Microsoft.XMLHTTP");
		r.open("GET","/ping.asp",true);
		r.onreadystatechange=function(){};
		r.send(null);
	}catch(e){
		//alert(e.message||e)
	}	
},1000*60*5);
