function CaricaFoto(img, name, wid, hi){
  foto1= new Image();
  foto1.src=(img);
  viewFotos(img, name, wid, hi);
}

function viewFotos(img, name, wid, hi){

 features = 
    "toolbar=no,location=no,directories=no,status=no,menubar=no," +
    "scrollbars=yes,resizable=yes,width=" + wid + ",height=" + hi;
 dlg = window.open ("","Details",features);
 dlg.document.write("<HTML><HEAD><TITLE>" + name + " Image Preview </TITLE></HEAD>");
 dlg.document.write("<BODY BGCOLOR=white><CENTER>");
 dlg.document.write("<TABLE WIDTH=100% HEIGHT=100%>");
 dlg.document.write("<TR><TD ALIGN=CENTER VALIGN=MIDDLE>");
 dlg.document.write("<b><u><font size=4 color=#9B9B9B face=Arial>" + name + "</font></u></b><BR><BR>");
 dlg.document.write("<IMG SRC=" + img + ">");
 dlg.document.write("</TD></TR>");
 dlg.document.write("</TABLE>");
}
