function fwLoadMenus() {
if (window.fw_menu_0) return;
  window.fw_menu_0 = new Menu("root",65,18,"Verdana, Arial, Helvetica, sans-serif",11,"#000000","#ffffff","#FF9999","#0099CC");
fw_menu_0.addMenuItem("Menu 1","location='menu1.htm'");
fw_menu_0.addMenuItem("Menu 3","location='menu3.htm'");
fw_menu_0.hideOnMouseOut=true;
  window.fw_menu_1 = new Menu("root",72,18,"Verdana, Arial, Helvetica, sans-serif",11,"#000000","#ffffff","#FF9999","#0099CC");
fw_menu_1.addMenuItem("About Us","location='aboutus.htm'");
fw_menu_1.addMenuItem("Location","location='location.htm'");
fw_menu_1.hideOnMouseOut=true; 
fw_menu_1.writeMenus();
} // fwLoadMenus()
var bName = navigator.appName;
 var bVer = parseInt(navigator.appVersion);
 var NS6 = (bName == "Netscape" && bVer >= 5);
 var NS4 = (bName == "Netscape" && bVer >= 4 && bVer < 5);
 var IE4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);
 var NS3 = (bName == "Netscape" && bVer < 4);
 var IE3 = (bName == "Microsoft Internet Explorer" && bVer < 4);

 var bName = navigator.appName;
 var bVer = parseInt(navigator.appVersion);
 var NS6 = (bName == "Netscape" && bVer >= 5);
 var NS4 = (bName == "Netscape" && bVer >= 4 && bVer < 5);
 var IE4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);
 var NS3 = (bName == "Netscape" && bVer < 4);
 var IE3 = (bName == "Microsoft Internet Explorer" && bVer < 4);
 
function imgPos(imgName){
 img = getImage(imgName);
 imgLeft = getImagePageLeft(img); // LEFT POSITION
 return imgLeft-10;
}
function getImage(name) {
  if (NS4 || NS6) {
    return findImage(name, document);
  }
  if (IE4 || NS6)
    return eval('document.all.' + name);
  return null;
}

function findImage(name, doc) {
  var i, img;
  for (i = 0; i < doc.images.length; i++)
    if (doc.images[i].name == name)
      return doc.images[i];
  for (i = 0; i < doc.layers.length; i++)
    if ((img = findImage(name, doc.layers[i].document)) != null) {
      img.container = doc.layers[i];
      return img;
    }
  return null;
}

function getImagePageLeft(img) {
  var x, obj;
  if (NS4 || NS6) {
    if (img.container != null)
      return img.container.pageX + img.x - 1;
    else
      return img.x - 1;
  }
  if (IE4) {
    x = 0;
    obj = img;
    while (obj.offsetParent != null) {
      x += obj.offsetLeft;
      obj = obj.offsetParent;
    }
    x += obj.offsetLeft;
    return x;
  }
  return -1;
}