function antiTimeout()
{
	var img = new Image();
	img.src = "/portal/notimeout.asp?dummy="+Math.round(Math.random()*100);
	setTimeout("antiTimeout()",60000);
}
antiTimeout();

