// Netscape resize fix:
// If the document contains layers or style sheets, Netscape 4
// might not display the page properly when the window is resized

function reloadPage() {
	if (innerWidth != document.pgW || innerHeight != document.pgH)
		location.reload();
}

with (navigator) {
	if ((appName == "Netscape") && (parseInt(appVersion) == 4)) {
		document.pgW = innerWidth;
		document.pgH = innerHeight;
		onresize = reloadPage;
	}
}

