
function ChkFrm_contatto(oForm)
{
sAlert1 = "Valore mancante per il campo ";
sAlert2 = "ATTENZIONE: Indirizzo ";
sAlert3 = " non valido ";
sAlert4 = "Selezionare una opzione per il campo ";
if (oForm.Nome.value == "")
{
  oForm.Nome.focus();
  alert(sAlert1 + "'Nome'");
  return (false);
}
if (oForm.Cognome.value == "")
{
  oForm.Cognome.focus();
  alert(sAlert1 + "'Cognome'");
  return (false);
}
if (oForm.email.value == "" || oForm.email.value.indexOf ('@', 0) < 1 || oForm.email.value.indexOf ('.', 0) < 1)
{
  oForm.email.focus();
  alert(sAlert2 + "'E-mail'" + sAlert3);
  return (false);
}
if (oForm.Messaggio.value == "")
{
  oForm.Messaggio.focus();
  alert(sAlert1 + "'Testo del messaggio'");
  return (false);
}
return (true);
}

