<!--

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 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);
  }

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 afficherImage(enUri, enLargeur, enHauteur) {
   
   var largeur = ((screen.availWitdh < enLargeur) ? screen.availWitdh : enLargeur);
   var hauteur = ((screen.availHeight < enHauteur) ? screen.availHeight : enHauteur);
   var gauche = (screen.availWidth - largeur) / 2;
   var haut = (screen.availHeight - hauteur) / 2 ;
   idfen=window.open ( "", 
                       "",
                       "width="+(largeur)+",height="+(hauteur)+", left="+(gauche)+", top="+(haut)+", scrollbars=yes"
                     );

   if (idfen != null) {
      var chemin=document.location.href.substring(0,document.location.href.lastIndexOf("/")+1);
      idfen.document.title = "Une image";
      idfen.document.body.style.margin="0px";
      mimi = idfen.document.createElement("img");
      mimi.src = chemin + enUri;
      idfen.document.body.appendChild(mimi);
      idfen.focus();
   }
}
-->
