// if any fool's still using NS4 here's the correction file for the window width

CssFixCheckIn();

function CssFix() { if (document.WM.CssFix.initWindowWidth != window.innerWidth || document.WM.CssFix.initWindowHeight != window.innerHeight) { document.location = document.location; } }

function CssFixCheckIn() {
	if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) == 4)) {
    	if (typeof document.WM == 'undefined'){ document.WM = new Object; }
    	if (typeof document.WM.WM_scaleFont == 'undefined') {
      		document.WM.CssFix = new Object;
      		document.WM.CssFix.initWindowWidth = window.innerWidth;
      		document.WM.CssFix.initWindowHeight = window.innerHeight;
    	}
    	window.onresize = CssFix;
  	}
}     	 	

