function popUP(url,nom,largeur,hauteur,options) {
var haut=(screen.height-hauteur)/2;
var gauche=(screen.width-largeur)/2;
pop=window.open(url,nom,"top="+haut+",left="+gauche+",width="+largeur+",height="+hauteur+","+options);
}
function Fermer()
{
opener=self;
self.close();
}
