<!--

function getObj(name) {
    if (document.getElementById)
        { return document.getElementById(name); }
    else if (document.all)
        { return document.all[name]; }
    else if (document.layers)
        { return document.layers[name]; } 
}

function ouvreFen(uri, nom, largeur, hauteur, gauche, haut, ascenceur) {
   
   idfen=window.open ( uri, 
                       nom,
                       "width="+(largeur)+",height="+(hauteur)+", left="+(gauche)+", top="+(haut)+", scrollbars="+(ascenceur)
                     );
   idfen.focus();                  
}

function afficherLegende(enObjetSource,enIdParagrapheCible) {
   getObj(enIdParagrapheCible).innerHTML = enObjetSource.alt;
}

function effacerLegende(enIdParagrapheCible) {
   getObj(enIdParagrapheCible).innerHTML = "";
}
			
function clignoterBouton() {
   	Lelien = getObj('boutonClignotant');
   	if (Lelien.attributes["class"].value == "concon") {
         Lelien.attributes["class"].value = "concombre";
         tps = 500;
        } else {
         Lelien.attributes["class"].value = "concon";
         tps = 500;
        }
   window.setTimeout("clignoterBouton()",tps);
  }

-->
