<!--
function ControllaModulo()  {
   var errori = '';
   Nome = document.getElementById("nome").value;	
   FiltroNome = /^.{3,25}$/;
   EmailAddr = document.getElementById("mail").value;
   Filtro = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
   if (!FiltroNome.test(Nome)) {
      errori += "- inserisci il tuo nome: max 25 lettere\n";
	  document.getElementById("nome").style.backgroundColor = "yellow";
   }
   if (!Filtro.test(EmailAddr)) {
      errori += "- l'indirizzo e-mail inserito non e' corretto\n";
	  document.getElementById("mail").style.backgroundColor = "yellow";
   }
	if (document.getElementById("messaggio").value == '') {
      errori += "- inserisci il testo del messaggio\n";
	  document.getElementById("messaggio").style.backgroundColor = "yellow";
	} 
	if (document.getElementById("autorizzo").checked == false) {
      errori += "- accetta le condizioni sulla privacy\n";
	  document.getElementById("autorizzo").style.backgroundColor = "yellow";
	} 
	if (errori) {
		alert('Attenzione:\n\n'+errori);
	    return false;
	} else {
      return true;
	}
}
//-->
