function twPopupImage(img, titre, auteur)
{
	oFenetre = window.open('','Image','top=300,left=180,width=400,height=400,toolbar=no,scrollbars=yes,resizable=no');
	oFenetre.document.write("<html><head><title>"+titre+"</title></head>");
	oFenetre.document.write("<script type=\"text/javascript\">function twAjustePopUp() { if (document.images[0].complete) { if (document.images[0].width > screen.width) { var WidthVal = screen.width; } else { var WidthVal = document.images[0].width+30 } if (document.images[0].height > screen.height) { var HeightVal = screen.height; } else { var HeightVal = document.images[0].height+80 } window.resizeTo(WidthVal,HeightVal); window.focus(); } else { setTimeout('twAjustePopUp()',1000) } }</"+"script>");
	oFenetre.document.write("<body onload='twAjustePopUp()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
	oFenetre.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><tr><td valign='middle' align='center'>");
	oFenetre.document.write("<img src='"+img+"' border='0' alt='"+auteur+"' title='"+auteur+"'>");
	oFenetre.document.write("</td></tr></table></body></html>");
	oFenetre.document.close();
}