<!--

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 changerImageFille(objet, enSrcImage) {
   for (i = 0; i < objet.childNodes.length; i++) {
   	if (objet.childNodes[i].nodeName == "IMG") {
   		objet.childNodes[i].src = enSrcImage;
   		return false;
   	}	
   }
   return true;
}

function clignoterReservation() {
   LelienReservation = getObj('lienReservation');
   if (LelienReservation.attributes["class"].value == "concon") {
         LelienReservation.attributes["class"].value = "concombre";
         tps = 500;
        } else {
         LelienReservation.attributes["class"].value = "concon";
         tps = 500;
        }
   window.setTimeout("clignoterReservation()",tps);
  }


-->
