function winOpen(imgPath,imgWidth,imgHeight) {
   var nw, wWidth, wHeight;
   
   wWidth=imgWidth+30; 
   wHeight=imgHeight+30;

   nw=window.open("", "ImgWindow","top=0, left=0, width=" + wWidth + ", height=" + wHeight + ", status=no, menubar=no, toolbar=no, scrollbar=yes");
   nw.document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\r\n"); 
   nw.document.write("<html><head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1252\">\r\n") 
   nw.document.write("<title>FIAV - Ingrandimento Foto</title></head>");
   nw.document.write("<body bgcolor=\"#000000\"><div align=\"center\"><img src=\"" + imgPath + "\" alt=\"Foto Ingrandita\"></div></body></html>\r\n");
   nw.document.close();
 }

