function toOn(nomDeCouche) {
   cacheTous();
   montreCouche(nomDeCouche);
   montreCouche("off");
}

function cacheTous() {
   cacheCouche('off');
   cacheCouche('infos');
   cacheCouche('course');
   cacheCouche('parcours');
   cacheCouche('organisation');
   cacheCouche('retro');
}

function montreCouche(nomDeCouche){
   var __oDiv=null;
   if (document.getElementById) { // DOM-1 (IE5 et NN6)
       __oDiv=document.getElementById(nomDeCouche);
       if (__oDiv)
           __oDiv.style.visibility="inherit";
   } else if (document.all) { // IE4 et 5
       __oDiv=document.all[nomDeCouche];
       if (__oDiv)
           __oDiv.style.visibility="inherit";
   } else if (document.layers) { // NN4
       __oDiv=document.layers[nomDeCouche];
       if (__oDiv)
           __oDiv.visibility="inherit";
   }
}

function cacheCouche(nomDeCouche) {
   var __oDiv=null;
   if (document.getElementById) { // DOM-1 (IE5 et NN6)
       __oDiv=document.getElementById(nomDeCouche);
       if (__oDiv)
           __oDiv.style.visibility="hidden";
   } else if (document.all) { // IE4 et 5
       __oDiv=document.all[nomDeCouche];
       if (__oDiv)
           __oDiv.style.visibility="hidden";
   } else if (document.layers) { // NN4
       __oDiv=document.layers[nomDeCouche];
       if (__oDiv)
           __oDiv.visibility="hidden";
   }
}

function openCoureur(dossard) {
	window.open ("","coureur",'top=10,left=10,width=500,height=540,toolbar=0,location=0,scrollbars=1,resizable=1');
}
