// JavaScript Document
function ChkFrm_8_00(oForm)
{
sAlert1 = "Valore mancante per il campo ";
sAlert2 = "Indirizzo e-mail non valido per il campo ";
if (oForm.Itm_8_00_1.value == "")
{
  oForm.Itm_8_00_1.focus();
  alert(sAlert1 + "'Nome'");
  return (false);
}
if (oForm.Itm_8_00_2.value == "")
{
  oForm.Itm_8_00_2.focus();
  alert(sAlert1 + "'Cognome'");
  return (false);
}
if (oForm.Itm_8_00_3.value == "")
{
  oForm.Itm_8_00_3.focus();
  alert(sAlert1 + "'Cittą'");
  return (false);
}
if (oForm.Itm_8_00_4.value == "")
{
  oForm.Itm_8_00_4.focus();
  alert(sAlert1 + "'Provincia'");
  return (false);
}
if (oForm.Itm_8_00_5.value == "")
{
  oForm.Itm_8_00_5.focus();
  alert(sAlert1 + "'Biografia'");
  return (false);
}
if (oForm.Itm_8_00_6.value == "" || oForm.Itm_8_00_6.value.indexOf ('@', 0) < 1 || oForm.Itm_8_00_6.value.indexOf ('.', 0) < 1)
{
  oForm.Itm_8_00_6.focus();
  alert(sAlert2 + "'E-mail'");
  return (false);
}
if (oForm.accept_ok_8_00.checked == false)
{
  alert("Prima di poter proseguire e necessario accettare le condizioni generali di utilizzo.");
  return (false);
}
return (true);
}
