<!--
function ChkFrm(oForm)
{
sAlert1 = "Valore mancante per il campo ";
sAlert2 = "Indirizzo e-mail non valido per il campo ";
if (oForm.nome.value == "")
{
  oForm.nome.focus();
  alert(sAlert1 + "'COGNOME E NOME / AZIENDA'");
  return (false);
}
if (oForm.mail.value == "" || oForm.mail.value.indexOf ('@', 0) < 1 || oForm.mail.value.indexOf ('.', 0) < 1)
{
  oForm.mail.focus();
  alert(sAlert2 + "'EMAIL'");
  return (false);
}
if (oForm.titolo.value == "")
{
  oForm.titolo.focus();
  alert(sAlert1 + "'OGGETTO'");
  return (false);
}
if (oForm.richiesta.value == "")
{
  oForm.richiesta.focus();
  alert(sAlert1 + "'DOMANDA/COMMENTO'");
  return (false);
}
myOption = -1;
for (i=oForm.privacy.length-1; i > -1; i--) {
if (oForm.privacy[i].checked) {
myOption = i; i = -1;
}
}
if (myOption == 1) {
  alert("Prima di poter proseguire e necessario accettare le condizioni visualizzate.");
return (false);
}
return (true);
}
//-->
