function fenetreCent(url,nom,largeur,hauteur,options) {
var haut=(screen.height-hauteur)/2;
var Gauche=(screen.width-largeur)/2;
popup=window.open
(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
popup.focus();
}
function fenetrepasCent(url,nom,largeur,hauteur,options) {
popup=window.open
(url,nom,"width="+largeur+",height="+hauteur+","+options);
popup.focus();
}
