function ValidateLogin(theForm)
{
  if (theForm.usern.value == "")
  {
    alert("Fill out your username please.");
	theForm.usern.focus();
    return (false);
  }
  if (theForm.passw.value == "")
  {
    alert("Fill out your password please.");
	theForm.passw.focus();
    return (false);
  }
  return (true);
}