var fencent=null;
function fenetreCent(url,nom,largeur,hauteur,options){
	var delta  = 100;
	var margee = 2;
	largeur_max = screen.width - delta;
	hauteur_max = screen.height - delta;
	ratio = hauteur / largeur;

	if(largeur > largeur_max){
		largeur = largeur_max - margee;
		hauteur = Math.floor(largeur * ratio);
	}
	if(hauteur > hauteur_max){
		hauteur = hauteur_max - margee;
		largeur = Math.floor(hauteur / ratio);
	}

	haut=(screen.height-hauteur-40)/2;
	Gauche=(screen.width-largeur)/2;

	if(fencent){
		try{
			fencent.close();	
		}
		catch(e){}
	}
	fencent=window.open(url,nom,"top="+haut+",left="+Gauche+",width="+largeur+",height="+hauteur+","+options);
	fencent.focus();	
}


