
// coding: utf-8

//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function RefreshPage(sUrl, bReload)
{
	window.location.reload();
}

//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
function AppelUrl(sUrl, bReload)
{
	var img = new Image();
	img.src = sUrl;
	
	if (bReload)
	{
		window.setTimeout('RefreshPage()', 100);
	}
}



