function keepAlive()
{
    $.ajax({
		type	: "POST",
		url	    : "ajax/keepalive.php",
		data	: 'id=' + Math.random(),
		success : function(msg) { }
	});
}

setInterval("keepAlive()", 60000);
