function NetscapeReloadPage()
{
	// Reloads the page if Netscape is resized
	if (innerWidth != document.m_iNetscapeInnerWidth || innerHeight != document.m_iNetscapeInnerHeight)
		location.reload();
}

// Run this on page startup
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
{
	document.m_iNetscapeInnerWidth = innerWidth;
	document.m_iNetscapeInnerHeight = innerHeight;
	onresize = NetscapeReloadPage;
}