var dlg = null;
function CaricaFoto(img){
  foto1= new Image();
  foto1.src=(img);
  viewFotos(img);
}
function viewFotos(img){
 wid=foto1.width+120;
 hei=foto1.height+150;
 features = "width="+wid+",height="+hei;
 features2 = "width=650,height=800,scrollbars=yes";
 if (dlg && dlg.open) {
    dlg.close();
 }
  if((foto1.width<10)&&(foto1.height<10)){
    dlg = window.open ("","Details","resizable=no,scrollbars=yes,toolbar=no,width=650,height=800");
    dlg.moveTo(0,0);
  }
  else{
  dlg = window.open ("","Details","resizable=no,scrollbars=yes,toolbar=no,width="+wid+",height="+hei+"");
  dlg.moveTo(0,0);
  }
 dlg.document.write("<html><head><title>Zoom</title></head>");
 dlg.document.write("<body bgcolor=#FFFFFF><center>");
 dlg.document.write("<a href=# onClick=window.close();>");
 dlg.document.write("<img src=\"http://site.sultrywear.com/images/popup-header.gif\" border=0>");
 dlg.document.write("<p>");
 dlg.document.write("<img src=" + img + " border=0>");
 dlg.document.write("<br>");
 dlg.document.write("<font color=#e75399 face=Arial>Click image to close window</font></a>");
 dlg.document.write("</body></html>");
}
