﻿function activatePasswordField() {
    var txtPassword = document.getElementById('ctl00_ContentPlaceHolder1_txtPassword');
    txtPassword.disabled = '';
    txtPassword.focus();
}
