function checkUser(theForm)
{

 if ((theForm.usuario.value == "") || (theForm.passw.value == ""))
  {
    alert("Debe indicar Usuario y Contraseņa.");
    theForm.usuario.focus();
    return (false);
  }


  return (true);
}
