function checkEmail(loginForm) 
  {
  if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(loginForm.login.value)){
  return (true)
  }
  alert("Invalid E-mail Address! Please re-enter.")
  document.loginForm.login.select()
  return (false)
  }
