

function viewimg(n,img,w,h){

  foto1= new Image();

  foto1.src=(img);

  viewFotos(n,img,w,h);

}

function enlargeimg(n,img,w,h){

  foto1= new Image();

  foto1.src=(img);

  viewFotos(n,img,w*1+50,h*1+150);

}

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 ("","",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("<font size=1 face=verdana>click to close</font></a>");

 dlg.document.write("</td></tr>");

 dlg.document.write("</table></body></html>");

 dlg.document.close();

}







