window.onload=montre;
function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) 
			{document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}


<!-- SCRIPT OUVERTURE ET FERMETURE DE POPUP + IMPRESSION
function imprimer(){
	window.print();
	}

function close_window() {
    window.close();
}
//-->
<!--
function OuvrirFenetre(url,nomfen,details) { window.open(url,nomfen,details)}
//-->


<!-- CONFIRMATION AVANT EFFACEMENT ----- Insérer onclick="return confirm_del()" dans le A HREF ---
function confirm_del() {
var agree=confirm("Êtes-vous sûr ?");
        if (agree) {
                return true ;
        } else {
                return false ;
        }
}
// -->

<!-- MONTRER CACHER UN OBJET --------

function hide(identifiant) {
      if (document.getElementById(identifiant).className == "hidden") {
         document.getElementById(identifiant).className = "visible";
      } else {
         document.getElementById(identifiant).className = "hidden";
      }
   }

// -->





