<!-- Controllo campi Modulo Richiesta
function ChkFrm_RicForm_RI(oForm)
{
sAlert1 = "Valore mancante per il campo ";
sAlert2 = "Indirizzo E-mail non valido";
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.indmail.value == "" || oForm.indmail.value.indexOf ('@', 0) < 1 || oForm.indmail.value.indexOf ('.', 0) < 1)
{
  oForm.indmail.focus();
  alert(sAlert2);
  return (false);
}
if (oForm.comagg.value == "")
{
  oForm.comagg.focus();
  alert(sAlert1 + "' Comunicazioni Aggiuntive '");
  return (false);
}
return (true);
}
//-->