function photo(url,largeur,hauteur,f_largeur,f_hauteur){
	 var image=window.open("","Auberge","width="+f_largeur+",height="+f_hauteur+",toolbar=no,resizable=no,scrollbars=yes,status=no");
	image.document.open();
	 image.document.write("<html><head><title>Untitled</title></head><body marginheight='0' marginwidth='0' bottommargin='0' leftmargin='0' rightmargin='0' topmargin='0'>");
	// image.document.write("<table border='0' ><tr><td valign='middle' align='center'><table width='"+largeur+"' height='"+hauteur+"'><tr><td>");
	 image.document.write("<img src='"+url+"' width='"+largeur+"' heigth='"+hauteur+"'><br><br>");
	// image.document.write("</tr></table></td></tr></table>");
	 image.document.write("<center>");
	 image.document.write("<a href='javascript:print()'><font color='304984' style='font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: bold; color: #304984;text-decoration: none;'> Imprimer</font></a>&nbsp;&nbsp;&nbsp;&nbsp;");
	 image.document.write("<a href='javascript:window.close()'><font color='304984' style='font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: bold; color: #304984;text-decoration: none;'>Fermer</font></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"); 
	 image.document.write("</center>");
	 image.document.write("</body></html>");
}



		
