// JavaScript Document

 
  function findme() {
    var email = window.prompt("Please enter your e-mail address and we will e-mail you your account information shortly:","");
    if ((email != "") & (email != null))  {
      window.document.mainform.email.value = email;
      window.document.mainform.submit();
    } else {
      alert ("No e-mail address entered.");
    }
  }
  
  function checkEULA(){
    if (document.login2.EULA.checked) {
        return true;
    } else {
        alert ("You must read and agree to the End User License Agreement before logging in.");
        return false;
    }
  }

