  // Check for browser capability
  capable = 0;
  browserName = navigator.appName;
  browserVersion = parseInt(navigator.appVersion); 
  ver = '';
  if      (browserName == "Netscape" && browserVersion >= 3) ver = "n3";
  else if (browserName == "Netscape" && browserVersion == 2) ver = "n2";
  else if (browserName == "Microsoft Internet Explorer" && (browserVersion == 2 || browserVersion == 3 )) ver = "e3";
  else if (browserName == "Microsoft Internet Explorer" && browserVersion >= 4) ver = "e4";
  if (ver == "n3" || ver == "e4" ) { capable = 1; }

  if(capable)
  {
    // Preloading Images
    profile = new Image (114,22);
    profile.src = "/images/n_profile.gif";
    profile_on = new Image (114,22);
    profile_on.src = "/images/n_profile_a.gif";   
    philosophy = new Image (114,22);
    philosophy.src = "/images/n_philosophy.gif";
    philosophy_on = new Image (114,22);
    philosophy_on.src = "/images/n_philosophy_a.gif";    
    services = new Image (114,22);
    services.src = "/images/n_services.gif";   
    services_on = new Image (114,22);
    services_on.src = "/images/n_services_a.gif";
    contact = new Image (114,22);
    contact.src = "/images/n_contact.gif";
    contact_on = new Image (114,22);
    contact_on.src = "/images/n_contact_a.gif"
  }
  
  function navMouseOver(imgname, imgnew, status) 
  {
    // Change image and display text in the status line
    if(capable)
    {
      document.images[imgname].src = eval(imgnew + ".src");
      window.status = status;
    }
    window.status = status;
  }
  
  function openWindow(theURL,winName,features)
  { //v2.0
    myWin = window.open(theURL,winName,features);
    myWin.focus();
    //myWin.resizeTo(resizeWidth,resizeHeight);
  }