function validacontatti(t) {
    if (t.nome.value == "")
  	{
		alert("Campo nome obbligatorio");
		 t.nome.focus();
		return (false);
  	}
     if (t.cognome.value == "")
  	{
		alert("Campo cognome obbligatorio");
		 t.cognome.focus();
		return (false);
  	}
    if (t.telefono.value == "")
  	{
		alert("Campo telefono obbligatorio");
		 t.telefono.focus();
		return (false);
  	}
  	  	
	    if (t.email.value == "")
  	{
		alert("Inserire un indirizzo email valido - Please write a valid email address");
	 t.email.focus();
    return (false);
  	}
	return (true);
}
