tmrID = setInterval( "interval()", 600000 );

function interval(){
	var myAjax = new Ajax.Request(
		"keeper.php", 
		{
			method: 'GET', 
			asynchronous: false
		});
	return true;
}
