function popimage(img,titre) {
w=open("",'image','width=1,height=1,toolbar=no,scrollbars=yes,resizable=no');
w.document.write("<html><head><title>"+titre+"</title>");
w.document.write("<script type='text/javascript'>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+10,document.images[0].height+30); window.focus();} else { settimeout('checksize()',250) } }</"+"script>");
w.document.write("<body onload='checksize()'  topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>");
w.document.write("<img src='"+img+"' border='0' alt='"+titre+"' title='"+titre+"' />");
w.document.write("</html>");
w.document.close(); 
}
