// Popup centré
function PopCen (page,largeur,hauteur,options) {
  					var haut=(screen.height-hauteur)/2;
  					var gauche=(screen.width-largeur)/2;
  					window.open(page,"","top="+haut+",left="+gauche+",width="+largeur+",height="+hauteur+","+options);
					}