var t;

function modifyOnline()
{
	http.open('get', 'random_online.php');
	http.onreadystatechange = handleResponse;
	http.send(null);

  t=setTimeout("modifyOnline()",900000);
}
