
   <!--
       browserName = navigator.appName;
       browserVer = parseInt(navigator.appVersion);
       if ((browserName == "Netscape" && browserVer >= 3) || (browserName == "Microsoft Internet Explorer" && browserVer >=4)) {
           browserOK = "yes";
           }
       else {
           browserOK = "no";
           }

       if (browserOK == "yes")
{
           exclusivesOn = new Image;
           exclusivesOn.src = "gif/exclusives1.gif";
           exclusivesOff = new Image;
           exclusivesOff.src = "gif/exclusives.gif";
           }
		   {
           specOn = new Image;
           specOn.src = "gif/spec1.gif";
           specOff = new Image;
           specOff.src = "gif/spec.gif";
           }
{
           aboutOn = new Image;
           aboutOn.src = "gif/about1.gif";
           aboutOff = new Image;
           aboutOff.src = "gif/about.gif";
           }
{
           linksOn = new Image;
           linksOn.src = "gif/links1.gif";
           linksOff = new Image;
           linksOff.src = "gif/links.gif";
           }
{
           newsOn = new Image;
           newsOn.src = "gif/news1.gif";
           newsOff = new Image;
           newsOff.src = "gif/news.gif";
           }
{
           emailOn = new Image;
           emailOn.src = "gif/email1.gif";
           emailOff = new Image;
           emailOff.src = "gif/email.gif";
           }
{
           homeOn = new Image;
           homeOn.src = "gif/home1.gif";
           homeOff = new Image;
           homeOff.src = "gif/home.gif";

           }

       function imageOn(imgName) {
           if (browserOK == "yes") {
               imgOn = eval(imgName + "On.src");
               document.images[imgName].src = imgOn;
           }

       }
       function imageOff(imgName) {
           if (browserOK == "yes") {
               imgOff = eval(imgName + "Off.src");
               document.images[imgName].src = imgOff;
           }
       }
   //-->