// Reloads page if Netscape Navigator 4 window resized
if (document.layers) {
	origWidth = innerWidth;
	origHeight = innerHeight;
}

function reloadPage() {
	if (innerWidth != origWidth || innerHeight != origHeight) location.reload();
	}

if (document.layers) onresize = reloadPage;

// <noscript> tags should be inline, but Mozilla renders them as blocks; correct with CSS/JS.
document.write('<style type=\"text/css\">noscript {display: none;}<\/style>');


