// JavaScript Document
  function submitIt(chkForm)
  {
    if (chkForm.username.value == "")
    {
      alert("You must enter a username.")
      return false
    }
	
    return true
  }
