<!--// Bugfix for Netscape 4 Mac (Problem occurs when resizing the window. Loss of CSS)
function fix(){	if(document.window.fix.startWidth != window.innerWidth || document.window.fix.startHeight != window.innerHeight) {		
document.location = document.location	
}
}
var ns4 = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 4 < 5))
if (ns4 && (typeof document.window == 'undefined')) {	
document.window = new Object;	
document.window.fix = new Object;	
document.window.fix.startWidth = window.innerWidth;	
document.window.fix.startHeight = window.innerHeight;	
window.onresize = fix;
}// End Bugfix
//-->
