
onerror = stopError;
function stopError()
{
return true;
}

if(top.frames.length > 0)
top.location.href=self.location;

var BrowserName = navigator.appName;
var BrowserVersion = navigator.appVersion;
var VersionShort = BrowserVersion.substr(0, 1);
var high = screen.height -22;
var wide = screen.width;

if(VersionShort > 3 && screen.width <= 1024)
{
window.moveTo(0, 0);
if(BrowserName == "Netscape")
{
window.outerHeight = high;
window.outerWidth = wide;
}
else if(BrowserName == "Microsoft Internet Explorer")
{
window.resizeTo(wide, high);
}
}
