
function pageLoaded() {
}

function newwindow(url) {
window.open(url , "" , "");
return false;
}

function showLoginAlert() {
if (document.loginform.autologin.checked) {
  loginAlert = "";
  loginAlert = loginAlert + "Ticking this box will allow you to be automatically\n";
  loginAlert = loginAlert + "logged in to the flatAccount.com website without\n";
  loginAlert = loginAlert + "having to enter your flat name or password.  You\n";
  loginAlert = loginAlert + "can disable this feature at any time by logging out.\n\n";
  loginAlert = loginAlert + "WARNING:  If you are using a shared computer it\n";
  loginAlert = loginAlert + "is recommended that you do NOT use this feature.\n";
  if (!confirm(loginAlert)) {
    document.loginform.autologin.checked = false;
    }
  }
}

function showPermanentButtonLoginAlert() {
loginAlert = "";
loginAlert = loginAlert + "This option will allow you to be automatically\n";
loginAlert = loginAlert + "logged in to the flatAccount.com website without\n";
loginAlert = loginAlert + "having to enter your flat name or password.  You\n";
loginAlert = loginAlert + "can disable this feature at any time by logging out.\n\n";
loginAlert = loginAlert + "WARNING:  If you are using a shared computer it\n";
loginAlert = loginAlert + "is recommended that you do NOT use this feature.\n";
if (!confirm(loginAlert)) {
  return false;
  }
else {
  return true;
  }
}
