function controlla(Form)
{
sAlert1 = "Valore mancante per il campo ";
sAlert2 = "Indirizzo e-mail non valido per il campo ";
if (Form.nome.value == "")
{
  Form.nome.focus();
  alert(sAlert1 + "'Nome'");
  return (false);
}
if (Form.email.value == "" || Form.email.value.indexOf ('@', 0) < 1 || Form.email.value.indexOf ('.', 0) < 1)
{
  Form.email.focus();
  alert(sAlert2 + "'E-mail'");
  return (false);
}
if (Form.testo.value == "")
{
  Form.testo.focus();
  alert(sAlert1 + "'Testo'");
  return (false);
}
return (true);
}