function jah_send()
{
	if (window.XMLHttpRequest) {
		req=new XMLHttpRequest();
		req.open("GET","/online.php5",true);
		req.send(null);
	}
	else if (window.ActiveXObject) {
		req = new ActiveXObject("Microsoft.XMLHTTP");
		if (req) {
			req.open("GET","/online.php5",true);
			req.send();
		}
	}
}
setInterval('jah_send();',60000);

