
function RefreshGPRndPhoto()
{
	comajxuSendGetWithCallback("/index-ajax.php?q=assets/snippets/GPRandomPhoto/GetRandomPhoto.php&r=" + Math.random(),
		function (AXmlHttp)
		{
			SetInnerHTML("gp_rnd_photo_container", AXmlHttp.responseText);
			setTimeout("RefreshGPRndPhoto()", 10000); 
		},	SetGPRndPhotoRefreshInterval);
}

function SetGPRndPhotoRefreshInterval()
{
	setTimeout("RefreshGPRndPhoto()", 10000); 
}
