<!-- hide 
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
        if (browserName == "Netscape" && browserVer >= 3) version = "n3";
        else if (browserName == "Microsoft Internet Explorer" && browserVer >= 4) version = "n3";
        else version = "n2";
        
        if (version == "n3")         {
        about1on = new Image;
        about1on.src = "images/m1c.gif";
        about2on = new Image;
        about2on.src = "images/m2c.gif";
        about3on = new Image;
        about3on.src = "images/m3c.gif";
        about4on = new Image;
        about4on.src = "images/m4c.gif";
        about5on = new Image;
        about5on.src = "images/m5c.gif";
               
     
        about1off = new Image;
        about1off.src = "images/m1.gif";
        about2off = new Image;
        about2off.src = "images/m2.gif";
        about3off = new Image;
        about3off.src = "images/m3.gif";
        about4off = new Image;
        about4off.src = "images/m4.gif";
        about5off = new Image;
        about5off.src = "images/m5.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;
        }
}
// stop hiding -->

