/**
 * This function reads the EMail address entered by the client and build up the
 * URL to process sequence for 'forgot your password'.
 *
 * This function is used for the login page.
 *
 * @author GW 09/Feb/2004. 
 */
function forgotPassword() {

  // read value from email editbox
  var email = document.getElementById("emailaddress").value;

  document.getElementById("login").action = "forgot-password?Email="+email;
  document.getElementById("login").submit();

}