<!-- 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";
      }
   }

// -->


<!--
function affichage_popup(nom_de_la_page, nom_interne_de_la_fenetre)
{
window.open (nom_de_la_page, nom_interne_de_la_fenetre, config='height=800, width=950, toolbar=yes, menubar=no, scrollbars=yes, resizable=yes, location=no, directories=no, status=no')
}
-->







