<!--
function openDialogWin(URL,nom,l,h) {
	hauteur = Math.round((screen.availHeight-h)/2);
    largeur = Math.round((screen.availWidth-l)/2);

                  window.open(URL, nom, "resizable=no,scrollbars=no, height="+ h +",width="+ l  + ",top="+hauteur+",left="+largeur);
				  
}

//-->