var dlg = null; function CaricaFoto(img, name, imgname, wid, hi){ foto1= new Image(); foto1.src=(img); foto2= new Image(); foto2.src=(imgname); viewFotos(img, name, imgname, wid, hi); } function viewFotos(img, name, imgname, wid, hi){ features = "toolbar=no,location=no,directories=no,status=no,menubar=no," + "scrollbars=no,resizable=no,width=" + wid + ",height=" + hi; if (dlg && dlg.open) { dlg.close(); } dlg = window.open ("","Details",features); dlg.document.write("" + name + " Zoom"); dlg.document.write("
"); dlg.document.write(""); dlg.document.write(""); dlg.document.write(""); dlg.document.write("
"); dlg.document.write(""); dlg.document.write("
"); dlg.document.write(""); dlg.document.write("
"); dlg.document.write(""); dlg.document.write("Click to close"); dlg.document.write("
"); }