//-------------------------------------------------------------------------------------------------------------------------------//
//-------------------------------------------------------------------------------------------------------------------------------//
//Les fonctions en javascript

function OuvrirFenetre(URL,Larg,Haut)
{
	//centrer				
	var top=(screen.height-Haut)/2;
 	var left=(screen.width-Larg)/2;
			
 				 				
 	var Fenetre;
  	Fenetre=window.open(URL,"Fenetre","top="+top+",left="+left+",width="+Larg+",height="+Haut+",menubar=no,toolbar=no,addressbar=no,status=no,resizable=no,scrollbars=yes");
							
	Fenetre.focus();
}


