<!--
function FrontPage_Form1_Validator(theForm){



// x default


  if (theForm.UID.value == "")
  {
    alert("Inserisci il NOME UTENTE per favore");
    theForm.UID.focus();
    return (false);
  }

  if (theForm.UID.value.length < 1)
  {
    alert("Inserisci il NOME UTENTE per favore");
    theForm.UID.focus();
    return (false);
  }





  if (theForm.PWD.value == "")
  {
    alert("Inserisci la PASSWORD per favore");
    theForm.PWD.focus();
    return (false);
  }

  if (theForm.PWD.value.length < 1)
  {
    alert("Inserisci la PASSWORD per favore");
    theForm.PWD.focus();
    return (false);
  }

  if (theForm.PWD.value.length > 19)
  {
    alert("Spiacente, la PASSWORD non puņ superare i 20 caratteri");
    theForm.PWD.focus();
    return (false);
  }

  return (true);
}
-->
