// ouverture d'une popup parametrable
function Popup(url, fenetre, largeur, hauteur, x, y){
        fenetre = window.open (url, fenetre,'directories=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no,copyhistory=no,left='+x+',top='+y+',width='+largeur+',height='+hauteur);
        fenetre.focus();
}
