function PopIt(myimg, msg, wid, hei){
  s0 = '';
  s0 = "width=" + wid + ",height=" + hei;
  s1 = '';
  s1 = "<TITLE>Anteprima</TITLE>" +
  "<link REL='STYLESHEET' TYPE='text/css' HREF='../_down/blackbar.css'>" +
  "<BODY BGCOLOR='F0E72A' TEXT='719227'>" +
  "<TABLE BORDER=0 WIDTH=100% HEIGHT=100% style='font-family: verdana, helvetica; font-size: 12px'>" +
  "<TR>" +
  "<TD VALIGN=MIDDLE ALIGN=CENTER HEIGHT=98%>" +
  "<A HREF='javascript:self.close()'>" +
  "<IMG SRC=" + myimg + " border=0 alt='Chiudi Immagine'>" +
  "</A>" +
  "<BR>" + msg +
  "</TD></TR>" +
  "<TR>" +
  "<TD VALIGN=BOTTOM ALIGN=LEFT HEIGHT=2%>" +
  "Clicca sull'immagine per Chiudere" +
  "</TD></TR></TABLE></BODY>";
  p0 = '';
  p0 = s0 + ",menubar=no,status=no,toolbar=no,resizable=yes";
  popup = window.open('','popDialog',p0);
  popup.document.write(s1);
  popup.document.close();
}


