function viewimg(n, img, w, h){
  foto1= new Image();
  foto1.src=(img);
  viewFotos(n, img, w, h);
}

function viewFotos(name, img, w, h){

 features = 
    "toolbar=no,location=no,directories=no,status=no,menubar=no," +
    "scrollbars=yes,resizable=yes,width=" + w + ",height=" + h;
 dlg = window.open ("","Details",features);
 dlg.document.write("<html><head><title>" + name + " Zoom</title></head>");
 dlg.document.write("<body bgcolor=white><center>"); 
 dlg.document.write("<a href=# onClick=window.close();>");
 dlg.document.write("<table width=100% height=100%>");
 dlg.document.write("<tr><td align=center valign=middle>");
 
 dlg.document.write("<img src=" + img + ">");
 dlg.document.write("</td></tr>");
 dlg.document.write("<tr><td align=center valign=middle>");
 dlg.document.write("<a href=# onClick=window.close();>");
 dlg.document.write("<img src='/lib/yhst-66786740790933/button-minimize.gif' alt='close window' width='118' height='18' style='border: none;' /></a>");
 dlg.document.write("</td></tr>");
 dlg.document.write("</table></body></html>");
}

