<!-- Controllo campi Modulo Richiesta
function ChkFrm_RicForm_RI(oForm)
{
sAlert1 = "Missing for the field ";
sAlert2 = "E-mail address is invalid";
if (oForm.nome.value == "")
{
  oForm.nome.focus();
  alert(sAlert1 + "' Name '");
  return (false);
}
if (oForm.cognome.value == "")
{
  oForm.cognome.focus();
  alert(sAlert1 + "' Surname '");
  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 + "' Additional Information '");
  return (false);
}
return (true);
}
//-->