function PopIt(label, msg, x, y, testo) {
   var s1 =    "<TITLE>:: ^^ ::</TITLE>" + "<BODY onBlur='self.focus()' leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>";
   var s2 =   label;
   var s3 =    "</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;
  };
