function zoom(imgurl) {
 winzoom=window.open("","Zoom","width=600,height=450,top=100,left=75");
 winzoom.document.write("<html><head><title>Zoom</title>");
 winzoom.document.write("<link rel='stylesheet' href='css/main.css'></head>");
 winzoom.document.write("<body bgcolor='#EEEEFF' topmargin='0' leftmargin='0'>");
 winzoom.document.write("<table border='0' height='100%' width='100%'>");
 winzoom.document.write("<tr><td align='center'>");
 winzoom.document.write("<img src='"+imgurl+"'><p>");
 winzoom.document.write("<a href='javascript:window.close()'>");
 winzoom.document.write("Fermer la fen&ecirc;tre</a></p>");
 winzoom.document.write("</td></tr></table></body></html>");
 winzoom.document.close;
}