<!--
function Validator(theForm)
	{

	 

	  if (theForm.realname.value == "")
	  {
	    alert("Inserire un valore per il campo \"cognome\".");
	    theForm.realname.focus();
	    return (false);
	  }

	  if (theForm.tel.value == "")
	  {
	    alert("Inserire un valore per il campo \"tel\".");
	    theForm.tel.focus();
	    return (false);
	  }

	   if (theForm.email.value == "")
	  {
	    alert("Inserire un valore per il campo \"mail\".");
	    theForm.email.focus();
	    return (false);
	  }
	  
  if (theForm.legge675.value == "0")
	  {
	    alert("Acconsentire il trattamento dei \"dati personali\".");
	    theForm.legge675.focus();
	    return (false);
	  }
	  return (true);
	}
	//-->

