<!-- Hide the script from old browsers --
<!-- copyright pammer webdesign 2000 -->
<!-- http://www.wallersee.com/webdesign/ -->

var BrowserName    = navigator.appName;
var BrowserVersion = navigator.appVersion;
var VersionShort   = BrowserVersion.substr(0, 1);
if(frames)
{
	if(top.frames.length > 0)
		top.location.href=self.location;
}
window.moveTo(0, 0);
{
	if (screen.width<= 800) var wide = screen.width
	else var wide = 800;
}
{	
	if (screen.width<= 800) var high = screen.height-28
	else var high =740;
}
if(VersionShort  > 3)
{
	window.moveTo(0, 0);
	if(BrowserName == "Netscape")
	{
		window.outerHeight = high;
		window.outerWidth = wide;
	}
	else if(BrowserName == "Microsoft Internet Explorer")
	{
		window.resizeTo(wide, high);
	}
}
   
// -- End Hiding Here -->