// JavaScript Document
function PopupImage(img) {
	w=open("",'image','width=500,height=400,toolbar=no,scrollbars=no,resizable=yes');	
	w.document.write("<HTML><HEAD><TITLE>Zoom Image Handi-village</TITLE>");
	w.document.write("<link href='texte.css' rel='stylesheet' type='text/css'>");
	w.document.write("</HEAD><SCRIPT language=javascript>function checksize()  { if (document.images[0].complete) {  window.resizeTo(document.images[0].width+12,document.images[0].height+65); window.focus();} else { setTimeout('check()',250) } }</"+"SCRIPT>");
	w.document.write("<BODY onload='checksize()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0><a href='javascript:window.close()'><IMG src='"+img+"' border=0 alt='Fermer la fenêtre'></a>");
	w.document.write("<br><div align='center'><font face='verdana' size='1'><a href='javascript:window.close ()' class='liens'>Fermer</a></font>");	
	w.document.write("</BODY></HTML>");
	w.document.close();
}