function ouvrir(url,largeur,hauteur)
{
	ouvrir(url,largeur,hauteur,"fpopup")
}

function ouvrir(url,largeur,hauteur,nom_fenetre)
{
	var popup;
	var h,w;
	var t,l;			
	
	w=largeur;
	h=hauteur;
	
	//centrage dans l'écran
	l=(screen.width-w)/2;
	t=(screen.height-h)/2;
				
	popup=window.open(url,nom_fenetre,'top='+t+',left='+l+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,height='+h+',width='+w);
	popup.focus();
}



function ouvrir2(url,largeur,hauteur,nom_fenetre)
{
	var popup;
	var h,w;
	var t,l;			
	
	w=largeur;
	h=hauteur;
	
	//centrage dans l'écran
	l=(screen.width-w)/2;
	t=(screen.height-h)/2;
				
	popup=window.open(url,nom_fenetre,'top='+t+',left='+l+',toolbar=yes,location=yes,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,height='+h+',width='+w);
	popup.focus();
}