sn_spinner_on   = new Image(16,16); sn_spinner_on.src   = "/images/spinner.gif";
sn_spinner_off  = new Image(16,16); sn_spinner_off.src  = "/images/spacer.gif";
sn_spinner_done = new Image(16,16); sn_spinner_done.src = "/images/checkmark.gif";

// ELIST SIGNUP - Simply submit the elist info to a page.

function passwordSend() {
  document.images["password-spinner"].src = sn_spinner_on.src;
  tempName = document.password.email.value;
  document.getElementById('passwordSubmit').src = '/inc/password.php?email='+tempName;
}

function passwordDone(respMsg, b) {
  document.images["password-spinner"].src = sn_spinner_off.src;
  if (respMsg != "OK") {
    alert(respMsg);
  } else {
    document.images["password-spinner"].src = sn_spinner_done.src;
    document.password.finish.value = b;
    document.password.finish.disabled = true;
  }

  // Clear out the iframe (in case of page reloads, etc.)

  document.getElementById('passwordSubmit').src = '/blank.html';
}
