function WM_netscapeCssFix() {
	var bt = new String(navigator.appName)
		if ((bt == 'Netscape') && (parseInt(navigator.appVersion) == 4)) {
			if (document.WM.WM_netscapeCssFix.initWindowWidth != window.innerWidth || document.WM.WM_netscapeCssFix.initWindowHeight != window.innerHeight) {
				document.location = document.location;
			}
		}
		if (bt.indexOf('Microsoft')>-1){
			if (document.WM.WM_netscapeCssFix.initWindowWidth != window.document.body.clientWidth || document.WM.WM_netscapeCssFix.initWindowHeight != window.document.body.clientHeight) {
				document.location = document.location;
			}
		}
}	

function WM_netscapeCssFixCheckIn() {
	var bt = new String(navigator.appName)
	if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) == 4)) {
		if (typeof document.WM == 'undefined'){
			document.WM = new Object;
		}
		if ((bt == 'Netscape') && (parseInt(navigator.appVersion) == 4)) {
			if (typeof document.WM.WM_scaleFont == 'undefined') {
				document.WM.WM_netscapeCssFix = new Object;
				document.WM.WM_netscapeCssFix.initWindowWidth = window.innerWidth;
				document.WM.WM_netscapeCssFix.initWindowHeight = window.innerHeight;
			}
		}
		if (bt.indexOf('Microsoft')>-1){
			if (typeof document.WM.WM_scaleFont == 'undefined') {
				document.WM.WM_netscapeCssFix = new Object;
				document.WM.WM_netscapeCssFix.initWindowWidth = window.screen.width;
				document.WM.WM_netscapeCssFix.initWindowHeight = window.screen.height;
			}
		}
		window.onresize = WM_netscapeCssFix;
	}
}

