<!--  
function popupImage(url,titre)  
{  
 var img = null;  
img = new Image();  
img.src = url;  
     
 var w = img.width; var h = img.height+15; // Dimensions de l'image  
var top = (screen.height-h)/2; // Centrage en hauteur  
var left = (screen.width-w)/2; // Centrage en largeur  
if(!titre) {var titre = 'Sans titre';}  
waitForLoading();  

function waitForLoading() {  
if(!img.complete) {setTimeout(waitForLoading, 30); return;}  
var Options = 'location=no,directories=no,status=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes';  
var pop = window.open('', 'monImage', Options+',top='+top+',left='+left+',width='+w+',height='+h);  
pop.document.write('<html><head><title>'+titre+'</title></head>');  
pop.document.write('<body onclick="window.close()" style="margin:0;padding:0">');  
pop.document.write('<img src="'+img.src+'" alt="'+titre+'" />');  
pop.document.write('<div style="font:bold 7pt Arial;text-align:center">Cliquez dans la fenêtre pour la fermer</div>');  
pop.document.write('</body></html>');  
pop.document.close();  
}  
}  
 //-->
 
