function validacontatti(t) {
    if (t.nome.value == "")
  	{
		alert("Campo nome obbligatorio");
		 t.nome.focus();
		return (false);
  	}
     if (t.telefono.value == "")
  	{
		alert("Campo telefono obbligatorio");
		 t.telefono.focus();
		return (false);
  	}
  	  	
	    if (t.email.value == "")
  	{
		alert("Scrivi il tuo indirizzo email.");
	 t.email.focus();
    return (false);
  	}
	return (true);
}

function validaamico(t) {
    if (t.nome.value == "")
  	{
      alert("Campo nome obbligatorio");
      t.nome.focus();
		return (false);
  	}
     if (t.email.value == "")
  	{
      alert("Campo email obbligatorio");
      t.email.focus();
		return (false);
  	}
	 if (t.emailamico.value == "")
  	{
      alert("Scrivi l'indirizzo email del tuo amico.");
        t.emailamico.focus();
    return (false);
  	}
	return (true);
}