function runSubmit (linea)  {
   Today = new Date();
   winname = 'demo' + Today.getFullYear() + Today.getMonth() + Today.getDate() + Today.getHours() + Today.getMinutes() + Today.getSeconds() + Today.getMilliseconds();
   menuwin = window.open('',winname,',toolbar=no,menubar=no,location=no,scrollbars=yes,height='+(window.screen.height-100)+',width='+(window.screen.width-60)+',top=10,left=10');
   /// menuwin = window.open('','menu',',toolbar=no,menubar=no,location=no,scrollbars=yes,fullscreen');
   menuwin.document.writeln(' ');
   menuwin.document.writeln('<html>');
   menuwin.document.writeln('<head>');
   menuwin.document.writeln('<meta http-equiv=content-type content=text/html;charset=iso-8859-1>');
   menuwin.document.writeln('<meta name=generator content=Mediasoft>');
   menuwin.document.writeln('<title>SC PHP</title>');
   menuwin.document.writeln('</head>');
   menuwin.document.writeln('<body onLoad=document.menu.submit();>');
   menuwin.document.writeln('<center><p><b>Elaborazione in corso .....</b></p></center>');
   if (linea == '1') {menuwin.document.writeln('<form name="menu" action="http://servizi.msw.it/php/menu.php" method="post">');}
   if (linea == '2') {menuwin.document.writeln('<form name="menu" action="http://servizi2.msw.it/php/menu.php" method="post">');}
   if (linea == '3') {menuwin.document.writeln('<form name="menu" action="http://servizi3.msw.it/php/menu.php" method="post">');}
   menuwin.document.writeln('<input type="hidden" value="'+ winname +'" name="SID">');
   menuwin.document.writeln('<input type="hidden" value="scuola" name="cgdb">');
   menuwin.document.writeln('<input type="hidden" value="demo" name="userid">');
   menuwin.document.writeln('<input type="hidden" value="demo" name="password">');
   menuwin.document.writeln('<input type="hidden" value="0|5|9|14" name="p">');
   menuwin.document.writeln('</form>');
   menuwin.document.writeln('</body></html>');
   menuwin.document.close();
///   window.close();
///   menuwin.focus();
   return;
}
