// 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 Evento/Artista'");
  return (false);
}
if (oForm.Itm_8_00_2.value == "")
{
  oForm.Itm_8_00_2.focus();
  alert(sAlert1 + "'Data Evento'");
  return (false);
}
if (oForm.Itm_8_00_3.value == "")
{
  oForm.Itm_8_00_3.focus();
  alert(sAlert1 + "'Ora Evento'");
  return (false);
}
if (oForm.Itm_8_00_4.value == "")
{
  oForm.Itm_8_00_4.focus();
  alert(sAlert1 + "'Luogo Evento'");
  return (false);
}
if (oForm.Itm_8_00_5.value == "")
{
  oForm.Itm_8_00_5.focus();
  alert(sAlert1 + "'Cittą'");
  return (false);
}
if (oForm.Itm_8_00_6.value == "")
{
  oForm.Itm_8_00_6.focus();
  alert(sAlert1 + "'Provincia'");
  return (false);
}
if (oForm.Itm_8_00_7.value == "")
{
  oForm.Itm_8_00_7.focus();
  alert(sAlert1 + "'Comunicato'");
  return (false);
}
if (oForm.Itm_8_00_9.value == "")
{
  oForm.Itm_8_00_9.focus();
  alert(sAlert1 + "'Inviato da (Associazione, Comune, Ufficio Stampa, etc..'");
  return (false);
}
if (oForm.Itm_8_00_11.value == "" || oForm.Itm_8_00_11.value.indexOf ('@', 0) < 1 || oForm.Itm_8_00_11.value.indexOf ('.', 0) < 1)
{
  oForm.Itm_8_00_11.focus();
  alert(sAlert2 + "'E-mail'");
  return (false);
}
if (oForm.accept_ok_8_00.checked == false)
{
  alert("Ok");
  return (false);
}
return (true);
}
