function PopIt(label, msg, x, y, testo) {
   var s1 =    "<TITLE>:: Pics ::</TITLE>" + "<BODY onBlur='self.focus()' BGCOLOR=#FFFFFF leftmargin=0 topmargin=0 marginwidth=0 marginheight=0" + "<TABLE BORDER=0 ALIGN=center valign=middle><TR><TD>" + "</TD></TR>";
   var s2 =  "<TR><TD align=center><FONT COLOR='FF0000'><B>" + label + "</B></FONT></TD></TR>";
   var s3 =    "<TR><TD align=center><FONT face=verdana size=1 color=#13155D>" + testo + "</FONT></TD></TR><TR><TD align=center><p>&nbsp;</p><p><FONT face=verdana size=2 color=#CCCCCC><a href=# onClick='self.close()'>:: close</a></FONT></p></TD></TR></TABLE></BODY>" ;
 x = eval(x);
 y = eval(y);
 var cAttrib = "width=" + x + ",height=" + y + ",scrollbars=no";
// alert(cAttrib);
 popup = window.open("","popDialog",cAttrib);
// popup = window.open("","popDialog","resizable=no,scrollbars=no");

popup.document.write(s1+s2+msg+s3);
popup.document.close();
}

 function PopHelp(cNameIMG,nBase,nAltez,descrizione) {
       PopIt('<img src="' + cNameIMG + '" width="' + nBase +'" height="' + nAltez + '">', '',nBase,nAltez,descrizione);
       return;
  };
  
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}  