<!--
function Aggiungi_Validator(theForm)
{
  if (theForm.titolo.value == '')
  {
    alert('Introdurre TITOLO');
    theForm.titolo.focus();
    return (false);
  }

  if (theForm.url.value.length <= 7)
  {
    alert('Introdurre URL');
    theForm.url.focus();
    return (false);
  }

  if (theForm.categoria.value == 'selezionare una categoria.')
  {
    alert('Selezionare CATEGORIA');
    theForm.categoria.focus();
    return (false);
  }

  if (theForm.descrizione.value.length < 50)
  {
    alert('Introdurre DESCRIZIONE');
    theForm.descrizione.focus();
    return (false);
  }

  if (theForm.email.value == '')
  {
    alert('Introdurre E-MAIL');
    theForm.email.focus();
    return (false);
  }

  if (theForm.password.value == '')
  {
    alert('Introdurre PASSWORD');
    theForm.password.focus();
    return (false);
  }

  return (true);
}
//-->
