	
	
	function open_zoom(nom_img){
		titre="Zoom"; 
		w = open("",'image','width=400,height=600,toolbar=no,scrollbars=yaes,resizable=no'); 
		w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>"); 
		w.document.write("<BODY onblur='window.close()' onclick='window.close()' 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='"+nom_img+"' border=0 alt=''>"); 
		w.document.write("</TD></TR></TABLE>");
		w.document.write("</BODY></HTML>"); 
		w.document.close(); 
	}
