<!--
	if (navigator.appName == "Netscape") {
  	isNav = true;
		isIE = false;
    var range = "";
    var styleObj = "";
    pre = "";
  } else {
    isIE = true;
		isNav = false;
    pre = "";
    range = "all.";
    styleObj = ".style";
  }


	function getObject(obj) {
		var theObj = eval(pre + "document." + range + obj + styleObj);
		return theObj;
	}

	//  Retrieve a reference to an image regardless of browser type.		
 	function getImgObject(obj) {
		var theObj = eval(pre + "document." + range + obj);
		return theObj;
	}       

function shiftTo(obj, x, y) {
	if (isIE) {
		obj.pixelLeft = x;
		obj.pixelTop = y;
		} else {
		obj.moveTo(x,y);
		}
	}
	
function shiftBy(obj, x, y){
	if(isIE) {
		obj.pixelLeft += x;
		obj.pixelTop += y;
	}
	else {
		obj.moveBy(x,y);
	}
}

function over(imgName, sub) {
	if (document.images && okay) { 
 		document[imgName].src = eval(sub + '.src')
 	}
	return true;
}

function WM_netscapeCssFix() {
  // It gets around another unfortunate bug whereby Netscape 
  // fires a resize event when the scrollbars pop up. This 
  // checks to make sure that the window's available size 
  // has actually changed.
  if (document.WM.WM_netscapeCssFix.initWindowWidth != window.innerWidth || document.WM.WM_netscapeCssFix.initWindowHeight != window.innerHeight) {
    document.location = document.location;
  }
}

function WM_netscapeCssFixCheckIn() {
  // This function checks to make sure the version of Netscape 
  // in use contains the bug; if so, it records the window's 
  // width and height and sets all resize events to be handled 
  // by the WM_netscapeCssFix() function.
  if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) == 4)) {
    if (typeof document.WM == 'undefined'){
      document.WM = new Object;
    }
    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;
    }
    window.onresize = WM_netscapeCssFix;
  }
}

WM_netscapeCssFixCheckIn()

		//-->
