function controlla(){
  var nome=document.modulo.nome.value;
  var citta=document.modulo.citta.value;
  var email=document.modulo.email.value;
  var messaggio=document.modulo.messaggio.value;
  var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/; 
  if( (nome=="") || (nome=="undefined") || (nome=="Nome") ){
   alert("Il campo Nome č obbligatorio!");
   document.modulo.nome.focus();
   return false;
  }
  if( (citta=="") || (citta=="undefined") || (citta=="Cittā") ){
   alert("Il campo Cittā č obbligatorio!");
   document.modulo.citta.focus();
   return false;
  }
  if( (email=="") || (email=="undefined") || (email=="Email") ){
   alert("Il campo Email č obbligatorio!");
   document.modulo.email.focus();
   return false;
  }
  if(!email_reg_exp.test(email)){
   alert("Inserire un email valida!");
   document.modulo.email.focus();
   return false;
  }
  if( (messaggio=="") || (messaggio=="undefined") || (messaggio=="Messaggio") ){
   alert("Il campo Messaggio č obbligatorio!");
   document.modulo.messaggio.focus();
   return false;
  }
  document.modulo.action="send.php";
  document.modulo.submit();
}
