/*
Code for Netscape 4 Resize bug 
This is a workaround for a Netscape 4 bug that causes 
stylesheets to be corrupted when the window is resized.
*/

if (document.layers) {
	var widthCheck = window.innerWidth;
	var heightCheck = window.innerHeight;
	window.onResize = resizeFix;
}

function resizeFix() {
	with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)){
	if (widthCheck != window.innerWidth || heightCheck != window.innerHeight)
	document.location.href = document.location.href;
	}}
}

function openWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}