 function ViewImage(ifile,ix,iy,ititle) {
 var win;
 win = window.open("","","width="+ix+",height="+iy+",menubar=no,toolbar=no,fullscreen");
 win.document.open();
 win.document.write("<html><head><title>"+ititle+"</title>");
 win.document.write("</head>");
 win.document.write("<body bgcolor=#000000 onClick=window.close() scroll=no>");
 win.document.write("<table width=100% height=100% border=0 cellpadding=0 cellspacing=0>");
 win.document.write("<tr><td align=center valign=middle>");
 win.document.write('<table width='+ix+' height='+iy+' border=15 bordercolor=#F2F2F2 cellpadding=0 cellspacing=0 bgColor=#F2F2F2>');
 win.document.write('<tr><td><img src='+ifile+' alt="Cliquez pour fermer"></td></tr>');
 win.document.write("</table></td></tr></table></body></html>");
 win.document.close();
 }
 


