function Nouvelle_Fenetre_Prono_XY(Page_A_Ouvrir,largeur,hauteur)
{
    var left = (screen.width/2)-(largeur/2);
	var top = (screen.height/2)-(hauteur/2);
	window.open (Page_A_Ouvrir,"FenProno","toolbar=no,dependent=yes,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width="+largeur+",height="+hauteur+", left="+left+", top="+top);
}
function Nouvelle_Fenetre_Independent_XY(Page_A_Ouvrir,largeur,hauteur)
{
    var left = (screen.width/2)-(largeur/2);
	var top = (screen.height/2)-(hauteur/2);
    window.open (Page_A_Ouvrir,"FenIndep","toolbar=no,dependent=yes,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width="+largeur+",height="+hauteur+", left="+left+", top="+top);
}

/* Recharge pas accueil */
function recharge(){
opener.location.reload();
}
