function ouvrir(l,h,url) {
hauteur=Math.round((screen.availHeight-h)/2);
largeur=Math.round((screen.availWidth-l)/2);
window.open(url, "site", "toolbar=1, location=0, directories=0, status=0, scrollbars=1, resizable=1, menubar=1, top="+hauteur+",left="+largeur+",width="+l+",height="+h);
}


/*function ouvrir(l,h,url) {
hauteur=Math.round((screen.availHeight-h)/2);
largeur=Math.round((screen.availWidth-l)/2);
NewWindow=window.open("about:blank", "site", "toolbar=1, location=0, directories=0, status=0, scrollbars=1, resizable=1, menubar=0, top="+hauteur+",left="+largeur+",width="+l+",height="+h);
NewWindow.document.write('<html><head></head><body bgcolor="#620404"><img src="'+url+'"></body></html>');
}*/



function ouvrir_presentoir(l,h,url) {
hauteur=Math.round((screen.availHeight-h)/2);
largeur=Math.round((screen.availWidth-l)/2);
window.open(url, "site", "toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=0, menubar=0, top="+hauteur+",left="+largeur+",width="+l+",height="+h);
}