/* ---------------------------------------------------------------------------------------------------------------------------------------------------
//	Project : 
//	Date : 08/09/08
//	Description :  Fichier Javascript
//	Author : Maxime Cazé (maxime.caze@francebay.net)
--------------------------------------------------------------------------------------------------------------------------------------------------- */

function PopupImage(img, titre) { 
	w=open("",'image','width=400, height=400, status=no, location=no, toolbar=no, menubar=no, resizable=no, scrollbars=no'); 
	w.document.write("<html><head><title>"+titre+"</title></head>"); 
	w.document.write("<script language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+50,document.images[0].height+150); window.focus();} else { settimeout('checksize()',250) } }</"+"script>"); 
	w.document.write("<body onload='checksize()' leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>");
	w.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><tr>");
	w.document.write("<td valign='middle' align='center'><img src='"+img+"' border=0 alt=''>"); 
	w.document.write("<br /><br /><a href='#' style='font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #3E4600;' onclick='window.close();'>Fermer cette fenêtre</a>");
	w.document.write("</td></tr></table>");
	w.document.write("</body></html>"); 
	w.document.close(); 
}