// Misc Javascript ---------------------------------//

     function passwordFocus() {

    var passwordElement1 = document.getElementById('passwordLoginInput1');
    var passwordElement2 = document.getElementById('passwordLoginInput2');

      passwordElement1.style.display = "none";
      passwordElement2.style.display = "inline";
      passwordElement2.focus();

}
