browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
         if ((browserName == "Netscape" && browserVer >= 3)||
             (browserName == "Microsoft Internet Explorer" && browserVer >=4)) version = "n3";
        else version = "x";
        if (version == "n3")
 {    
        Aon = new Image;
        Aon.src = "/img/fr/menu_02_on.gif";
        Bon = new Image;
        Bon.src = "/img/fr/menu_03_on.gif";
        Con = new Image;
        Con.src = "/img/fr/menu_04_on.gif";
        Don = new Image;
        Don.src = "/img/fr/menu_05_on.gif";
        Eon = new Image;
        
        Aoff = new Image;
        Aoff.src = "/img/fr/bt_comp_veh_pass_off.gif";
        Boff = new Image;
        Boff.src = "/img/fr/bt_mini_fourgonnette_off.gif";
        Coff = new Image;
        Coff.src = "/img/fr/bt_comp_utilitaire_off.gif";
        Doff = new Image;
        Doff.src = "/img/fr/bt_comp_fourgonnette_off.gif";
        Eoff = new Image;
        Eoff.src = "/img/fr/bt_comp_camionnette_off.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;
        }
}
