
//netscape 4 bug fix - forces browser to reload page after resizing
if (document.layers) {
	origWidth = innerWidth;
	origHeight = innerHeight;
//	alert("InnerWidth and Height " + origWidth + " " + origHeight)	
}

function reloadPageAll() {
//	alert("reloadPageAll");
	if (document.all) {
//	alert("calling reloadPageIE");
	reloadPageIE()
}
else if (document.layers) {
//	alert("calling reloadPageNN4");
	reloadPageNN()
}
else if (document.getElementById) {
//	alert("calling reloadPageNN6");
	reloadPageIE()
}
}

function reloadPageNN() {
//	alert("reloadPageNN");
	if (innerWidth != origWidth || innerHeight != origHeight) 
	location.reload();
//	alert("RESIZED NN");
}
function reloadPageIE() {
//	alert("reloadPageIE");
//	window.location.href = window.location.href;
	location.reload();
//	alert("RESIZED IE");
}
if (document.layers) onresize = reloadPageNN;
// If cutting and pasting the above code don't forget the javascript in the body tag
