function NCSSFix() {
	if (document.NeedsFix.NCSSFix.initWindowWidth != window.innerWidth || document.NeedsFix.NCSSFix.initWindowHeight != window.innerHeight) {
	document.location = document.location;
	}
}

function NCSSFixItNow() {
	if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) == 4)) {
		if (typeof document.NeedsFix == 'undefined'){
      	document.NeedsFix = new Object;
    }
    if (typeof document.NeedsFix.scaleFont == 'undefined') {
    	document.NeedsFix.NCSSFix = new Object;
    	document.NeedsFix.NCSSFix.initWindowWidth = window.innerWidth;
    	document.NeedsFix.NCSSFix.initWindowHeight = window.innerHeight;
    }
    window.onresize = NCSSFix;
	}
}

NCSSFixItNow()