function check(Form)
{
sAlert1 = "Inserire ";
sAlert2 = "Inserire un indirizzo e-mail valido";
if (Form.nome.value == "")
{
  Form.nome.focus();
  alert(sAlert1 + "il nome");
  return (false);
}
if (Form.cognome.value == "")
{
  Form.cognome.focus();
  alert(sAlert1 + "il cognome");
  return (false);
}
if (Form.telefono1.value == "")
{
  Form.telefono1.focus();
  alert(sAlert1 + "almeno un numero di telefono");
  return (false);
}
if (Form.email.value == "" || Form.email.value.indexOf ('@', 0) < 1 || Form.email.value.indexOf ('.', 0) < 1)
{
  Form.email.focus();
  alert(sAlert2);
  return (false);
}
if (Form.accettazione_ok.checked == false)
{
  alert("Per proseguire, è necessario accettare le condizioni visualizzate.");
  return (false);
}
return (true);
}