﻿
function MyPasswordFaq_UI(clientid) {
    this.ClientId = clientid;
    return this;
}

function showMyPasswordFaq() {
    document.getElementById("MyPasswordFaq").className = "resetPasswordMigratedOverlayShow";
}
function hideMyPasswordFaq() {
    document.getElementById("MyPasswordFaq").className = "resetPasswordMigratedOverlayHidden";
    return false;
}
