function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}
function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

function insertDate() {
   m = new Array("1","2","3","4","5","6","7","8","9","10","11","12");
   today = new Date();
   day = today.getDate();
   year = today.getYear();
   if (year < 2000)    
   year = year + 1900; 
   document.write(""+m[today.getMonth()]+"-"+today.getDate()+"-"+year+"\n");
}

 // Netscape Resize Css Fix
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()