function openimage(img, width, height, titre, auteur) { 
  // Compatible IE5+ / NN6+ / Mozilla
  oWin = window.open('','Image','width='+width+',height='+height+',toolbar=no,scrollbars=no,resizable=yes');
  oWin.document.write('<html><head><title>'+titre+'</title><style type="text/css"><!-- body { background-color:#000; } //--></style></head>'); 
  oWin.document.write("<script type=\"text/javascript\">function twAjustePopUp() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+10,document.images[0].height+60); window.focus();} else { setTimeout('twAjustePopUp()',1000) } }</"+"script>");
  oWin.document.write("<body onload='twAjustePopUp()' onblur='window.close()' onclick='window.close()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>"); 
  oWin.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><tr><td valign='middle' align='center'>"); 
  oWin.document.write('<img src="'+img+'" border="0" alt="'+auteur+'" title="'+auteur+'">');
  oWin.document.write('</td></tr></table></body></html>'); 
  oWin.document.close();
  
  return false;
} 
