 function checkform2(jumpto) {
  Messaggio = "Attenzione, mancano le seguenti informazioni:\n\n";
  Errore = 0;

  if (document.Contact2.uno.value == "") {
    Errore = 1;
    Messaggio=Messaggio + "Inserire un testo\n";
  } 
  if (document.Contact2.uno.value == "Incolla qui l'indirizzo web. La denuncia è assolutamente anonima!") {
    Errore = 1;
    Messaggio=Messaggio + "Inserire un testo\n";
  } 
  if (Errore == 1) {
    alert(Messaggio+'\n\nPer favore compilate i campi mancanti.');
  } else {
    document.Contact2.action=jumpto;
    document.Contact2.target="_self";
    document.Contact2.submit();
  }
 }