<!--
function disabilitaPulsanti(nomeForm) {
  eval("formAttiva = window.document."+nomeForm+";");
  for ( i = 0; i < formAttiva.length; i++ ) {
    tipo = formAttiva.elements[i].type;
    if ( (tipo == "submit") || (tipo == "reset") || (tipo == "button") ) {
      formAttiva.elements[i].disabled = true;
    }
  }
  formAttiva.submit();
}
-->