/* auteur: varman7 */
/* Date de création: 14/11/2002 */

function OpIm(zone,p,img,h,w)
{
	if (isNaN(h)) h=400;
	if (isNaN(w)) w=400;
	w=open('','','width='+w+',height='+h); //,resizable=yes
	w.document.open();
	w.document.writeln("<html>\n<head>\n<title>Le Moulin de Port Laverré</title>\n<LINK HREF=\"style.css\" REL=\"stylesheet\" TYPE=\"text/css\">\n</head>\n<body bottommargin=\"0\" leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" rightmargin=\"0\" topmargin=\"0\" style=\"background: #FFFFFF\">\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" bgcolor=\"#FFFFFF\">\n<tr>\n<td valign=\"top\" align=\"center\">\<img src=\"photo/"+img+".jpg\" border=\"0\">\n</td>");
	if (p=="v")
		w.document.writeln("<td valign=\"middle\" align=\"center\"><div class=\"div2\" style=\"margin-left: 10px; margin-right: 10px;\">");
	else
		w.document.writeln("</tr>\n<tr>\n<td align=\"center\" valign=\"top\"><div class=\"div2\" style=\"margin-top: 10px;\">");
	w.document.writeln(zone+"</div></td>\n</tr>\n</table><br><div align=\"center\"><input type=\"button\" value=\"Fermer\" class=\"flat\" onclick=\"window.close();\"></div>\n</body>\n</html>");
	w.document.close();
}