
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/accueil_01_on.jpg";
        Bon = new Image;
        Bon.src = "/img/fr/accueil_02_on.jpg";
        Con = new Image;
        Con.src = "/img/fr/accueil_03_on.jpg";
		Don = new Image;
        Don.src = "/img/fr/accueil_04_on.jpg";
		Eon = new Image;
        Eon.src = "/img/fr/accueil_01_2_on.jpg";
		Fon = new Image;
        Fon.src = "/img/fr/accueil_04_2_on.jpg";
		Gon = new Image;
        Gon.src = "/img/fr/accueil_05_2_on.jpg";
		
        Aoff = new Image;
        Aoff.src = "/img/fr/accueil_01_off.jpg";
        Boff = new Image;
        Boff.src = "/img/fr/accueil_02_off.jpg";
        Coff = new Image;
        Coff.src = "/img/fr/accueil_03_off.jpg";
		Doff = new Image;
        Doff.src = "/img/fr/accueil_04_off.jpg";
		Eoff = new Image;
        Eoff.src = "/img/fr/accueil_01_2_off.jpg";
		Foff = new Image;
        Foff.src = "/img/fr/accueil_04_2_off.jpg";
		Goff = new Image;
        Goff.src = "/img/fr/accueil_05_2_off.jpg";
}
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;
        }
}

