function ChkFrm_8_02(oForm)
{
sAlert1 = "Valore mancante per il campo ";
sAlert2 = "ATTENZIONE: Indirizzo ";
sAlert3 = " non valido ";
sAlert4 = "Selezionare una opzione per il campo ";
if (oForm.Itm_8_02_1.selectedIndex == 0)
{
  oForm.Itm_8_02_1.focus();
  alert(sAlert4 + "'Ora della visita'");
  return (false);
}
if (oForm.Itm_8_02_2.value == "")
{
  oForm.Itm_8_02_2.focus();
  alert(sAlert1 + "'Cognome'");
  return (false);
}
if (oForm.Itm_8_02_3.value == "")
{
  oForm.Itm_8_02_3.focus();
  alert(sAlert1 + "'Nome'");
  return (false);
}
if (oForm.Itm_8_02_4.value == "")
{
  oForm.Itm_8_02_4.focus();
  alert(sAlert1 + "'Luogo di nascita'");
  return (false);
}
if (oForm.Itm_8_02_5.value == "")
{
  oForm.Itm_8_02_5.focus();
  alert(sAlert1 + "'Data di nascita (ggmmaaaa)'");
  return (false);
}
if (oForm.Itm_8_02_22.value == "")
{
  oForm.Itm_8_02_22.focus();
  alert(sAlert1 + "'Indirizzo'");
  return (false);
}
if (oForm.Itm_8_02_23.value == "")
{
  oForm.Itm_8_02_23.focus();
  alert(sAlert1 + "'CAP'");
  return (false);
}
if (oForm.Itm_8_02_24.value == "")
{
  oForm.Itm_8_02_24.focus();
  alert(sAlert1 + "'Cittą'");
  return (false);
}
if (oForm.Itm_8_02_25.selectedIndex == 0)
{
  oForm.Itm_8_02_25.focus();
  alert(sAlert4 + "'Provincia'");
  return (false);
}
if (oForm.Itm_8_02_26.value == "")
{
  oForm.Itm_8_02_26.focus();
  alert(sAlert1 + "'Telefono'");
  return (false);
}
if (oForm.Itm_8_02_27.value == "" || oForm.Itm_8_02_27.value.indexOf ('@', 0) < 1 || oForm.Itm_8_02_27.value.indexOf ('.', 0) < 1)
{
  oForm.Itm_8_02_27.focus();
  alert(sAlert2 + "'E-mail'" + sAlert3);
  return (false);
}
if (oForm.Itm_8_02_28.selectedIndex == 0)
{
  oForm.Itm_8_02_28.focus();
  alert(sAlert4 + "'Regione'");
  return (false);
}
if (oForm.Itm_8_02_29.selectedIndex == 0)
{
  oForm.Itm_8_02_29.focus();
  alert(sAlert4 + "'Settore'");
  return (false);
}
if (oForm.Itm_8_02_30.value == "")
{
  oForm.Itm_8_02_30.focus();
  alert(sAlert1 + "'Equipe di appartenenza'");
  return (false);
}
if (oForm.Itm_8_02_32_sub_1.checked == false && oForm.Itm_8_02_32_sub_2.checked == false)
{
  oForm.Itm_8_02_32_sub_1.focus();
  alert(sAlert4 + "'Desideriamo soggiornare'");
  return (false);
}
if (oForm.Itm_8_02_33_sub_1.checked == false && oForm.Itm_8_02_33_sub_2.checked == false)
{
  oForm.Itm_8_02_33_sub_1.focus();
  alert(sAlert4 + "'Faremo il Giro Turistico'");
  return (false);
}
return (true);
}
