<!--
browserName=navigator.appName; 
browserVer=parseInt(navigator.appVersion);

  if ((browserName=="Netscape" && browserVer>=3) || (browserName=="Microsoft Internet Explorer" && browserVer>=4))    
  version="n3";
  else
    version="n2";

  if (version=="n3")
   {
  pic1on = new Image();
  pic1on.src = "http://www.maxlist.com/ui/xmenu01r.gif";
  pic2on = new Image();
  pic2on.src = "http://www.maxlist.com/ui/xmenu02r.gif";
  pic3on = new Image();
  pic3on.src = "http://www.maxlist.com/ui/xmenu03r.gif";
  pic4on = new Image();
  pic4on.src = "http://www.maxlist.com/ui/xmenu04r.gif";
  pic5on = new Image();
  pic5on.src = "http://www.maxlist.com/ui/xmenu05r.gif";
  pic6on = new Image();
  pic6on.src = "http://www.maxlist.com/ui/xmenu06r.gif";  
  pic7on = new Image();
  pic7on.src = "http://www.maxlist.com/ui/xmenu07r.gif"; 
  pic8on = new Image();
  pic8on.src = "http://www.maxlist.com/ui/xmenu08r.gif";  

  pic1off = new Image();
  pic1off.src = "http://www.maxlist.com/ui/xmenu01.gif";
  pic2off = new Image();
  pic2off.src = "http://www.maxlist.com/ui/xmenu02.gif";
  pic3off = new Image();
  pic3off.src = "http://www.maxlist.com/ui/xmenu03.gif";
  pic4off = new Image();
  pic4off.src = "http://www.maxlist.com/ui/xmenu04.gif";
  pic5off = new Image();
  pic5off.src = "http://www.maxlist.com/ui/xmenu05.gif";
  pic6off = new Image();
  pic6off.src = "http://www.maxlist.com/ui/xmenu06.gif";  
  pic7off = new Image();
  pic7off.src = "http://www.maxlist.com/ui/xmenu07.gif";
  pic8off = new Image();
  pic8off.src = "http://www.maxlist.com/ui/xmenu08.gif";  
  }
function lightup(imgName)
 {
   if (version=="n3")
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }
function turnoff(imgName)
 {
   if (version=="n3")
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }
//-->