function popit(url,x,y,titre) {

    hauteur=Math.round((screen.availHeight-y)/2);
    
    largeur=Math.round((screen.availWidth-x)/2);
    window.open(url, titre, 'height='+y+', width='+x+', top='+hauteur+', left='+largeur+', toolbar=no, menubar=no, location=no, resizable=yes, scrollbars=yes, status=no');
    
}
