// FIX RESIZE BUG WITH NETSCAPE
	function CSSfix()
	 {
	  if (document.self.CSSfix.initWindowWidth != window.innerWidth || document.self.CSSfix.initWindowHeight != window.innerHeight)
	   {
	    document.location = document.location;
	   }
	 }
	
	function CSSfixCheckIn()
	 {
	  if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) == 4))
	   {
	    if (typeof document.self == 'undefined')
	     {
	      document.self = new Object;
	     }
	    if (typeof document.self.self_scaleFont == 'undefined')
	     {
	      document.self.CSSfix = new Object;
	      document.self.CSSfix.initWindowWidth = window.innerWidth;
	      document.self.CSSfix.initWindowHeight = window.innerHeight;
	     }
	    window.onresize = CSSfix;
	   }
	 }
	
	CSSfixCheckIn()

	