function fenetreCent(url,nom,largeur,hauteur) {
    var haut=(screen.height-hauteur)/2;
    var Gauche=(screen.width-largeur)/2;
    window.open(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+", menubar=no,scrollbars=yes,resizable=yes,toolbar=no,titlebar=no,location=no,status=no");
}
