function CaricaFoto(img, name, imgname, wid, hi){
  foto1= new Image();
  foto1.src=(img);
  foto2= new Image();
  foto2.src=(imgname);
  viewFotos(img, name, imgname, wid, hi);
}
function viewFotos(img, name, imgname, wid, hi){
 features = 
 "toolbar=no,location=no,directories=no,status=no,menubar=no," +
 "scrollbars=yes,resizable=no,width=" + wid + ",height=" + hi;
 dlg = window.open ("","Details",features);
 dlg.document.write("<html><head><ti");
 dlg.document.write("tle>" + name + " Zoom</title></head>");
 dlg.document.write("<body marginheight=0 marginwidth=0 topmargin=0 leftmargin=0 bgcolor=ffffff>");
 dlg.document.write("<table border=0 CELLPADDING=0 CELLSPACING=0 width=100% height=100%>");
 dlg.document.write("<tr><td bgcolor=FFFFFF valign=top align=center>");
 dlg.document.write("<img src=" + img + ">");
 dlg.document.write("</td></tr>");
 dlg.document.write("<tr><td align=center>");
 dlg.document.write("<a href=# onClick=window.close();>");
 dlg.document.write("<img border=0 src=http://www.castlebaths.com></a>");
 dlg.document.write("<P></td></tr>");
 dlg.document.write("</table></body></html>");
 }