function Esegui(Comando, Seriale) {
   pForm = document.forms["form_ricerca"];

   with (pForm) {
      //if (COMANDO!=null) COMANDO.value = Comando;
      switch (Comando) {
        case "scheda":
	var larghezza = 456;
	var altezza = 560;
	var x = (screen.width -larghezza)/2;
	var y = (screen.height - altezza)/2;
          sPage = "consulta_scheda_pub.php?SERIALE=" + Seriale;
          wScheda = window.open(sPage, "scheda_anagrafica", 'width='+larghezza+', height='+altezza+', status=no, location=no, toolbar=no, scrollbars=yes');
          wScheda.moveTo(x,y);
          wScheda.focus();
          return;
          break;
        case "scheda_mondo":
	var larghezza = 362;
	var altezza = 561;
	var x = (screen.width -larghezza)/2;
	var y = (screen.height - altezza)/2;
          sPage = "../scheda/scheda_prodotto.php?SERIALE=" + Seriale;
          wScheda = window.open(sPage, "scheda_anagrafica", 'width='+larghezza+', height='+altezza+', status=no, location=no, toolbar=no, scrollbars=no');
          wScheda.moveTo(x,y);
          wScheda.focus();
          return;
          break;
        case "cerca_mondi":
          submit();
          break;
      }
   }
   return;
}

