img = "";
wid = 0;
hi = 0;

function CaricaFoto(name, imgname){
 features = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + wid + ",height=" + hi;
 if (img != "") {
   dlg = window.open ("","Details",features);
   if (dlg.document.innerHTML != "") {
   dlg.close();
   dlg = window.open ("","Details",features);
   }
   dlg.document.write("<htm");
   dlg.document.write("l><he");
   dlg.document.write("ad><ti");
   dlg.document.write("tle>" + name + " Zoom</title></head>");
   dlg.document.write("<body bgcolor=white topmargin=0 leftmargin=0><center>");
   dlg.document.write("<table align=center>");
   dlg.document.write("<tr><td align=center valign=middle>");
   dlg.document.write("<b><font size=2 face=Arial>" + name + "</font></b><br><br>");
   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=Arial>Click to close</font></a>");
   dlg.document.write("</td></tr>");
   dlg.document.write("</table></body></html>");
 }
}
function ImageSwap(smallimage, largeimage, popwid, pophi) {
 if (document.images) document.images['primaryimage'].src=smallimage;
 img = largeimage;
 wid = popwid;
 hi = pophi;
}


