<!-- Controllo campi Modulo Richiesta
function ChkFrm_RicForm_RI(oForm)
{
sAlert1 = "Fehlt für den Bereich ";
sAlert2 = "E-Mail-Adresse ist ungültig";
if (oForm.nome.value == "")
{
  oForm.nome.focus();
  alert(sAlert1 + "' Name '");
  return (false);
}
if (oForm.cognome.value == "")
{
  oForm.cognome.focus();
  alert(sAlert1 + "' Vorname '");
  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 + "' Zusätzliche Informationen '");
  return (false);
}
return (true);
}
//-->