<!--
if(parent.frames.length>=1)
{
	window.top.location.href="";
}

function checkbrowser()
{
	with (navigator)
	if(!(((appName=="Netscape")||(appName=="Microsoft Internet Explorer"))&&(parseInt(appVersion)>=4)))
	{
		alert("\nYour browser isn't supported by this site, you have been warned! ;-)\n");
	}
}

function reloadpage(init)
{
	if(init==true) with (navigator)
	{
		if((appName=="Netscape")&&(parseInt(appVersion)>=4))
		{
			document.pgw=self.innerWidth;
			document.pgh=self.innerHeight;
			onresize=reloadpage;
		}
	}
	else if(self.innerWidth!=document.pgw||self.innerHeight!=document.pgh)
	{
		self.mainbottom.location.reload();
		self.top.location.reload();
	}
}

checkbrowser();
reloadpage(true);
//-->