<!--
  browserName = navigator.appName;
  browserVer = parseInt(navigator.appVersion);
  if (browserVer >= 3) version = "n3";
    else version = "n2";
  if (version == "n3") 
  {
    toc1on = new Image();
    toc1on.src = "images/menu/collectionsglow.gif";
    toc2on = new Image();
    toc2on.src = "images/menu/creationglow.gif";
    toc3on = new Image();
    toc3on.src = "images/menu/entrepriseglow.gif";
    toc4on = new Image();
    toc4on.src = "images/menu/nosclientsglow.gif";
    toc5on = new Image();
    toc5on.src = "images/menu/supportglow.gif";
    
    toc1off = new Image();
    toc1off.src = "images/menu/collections.gif";
    toc2off = new Image();
    toc2off.src = "images/menu/creation.gif";
    toc3off = new Image();
    toc3off.src = "images/menu/entreprise.gif";
    toc4off = new Image();
    toc4off.src = "images/menu/nosclients.gif";
    toc5off = new Image();
    toc5off.src = "images/menu/support.gif";    
   
  }
  function img_act(imgName) 
  {
    if (version == "n3") 
    {
      imgOn = eval(imgName + "on.src");
      document [imgName].src = imgOn;
    }
  }
  function img_inact(imgName) 
  {
    if (version == "n3") 
    {
      imgOff = eval(imgName + "off.src");
      document [imgName].src = imgOff;
    }
  }
//-->
