﻿function SaveUserName()
{
    // copy the value to the current user name label
    lblCurrentUserNameNew.innerText = tbUserSaveNew.value;
    //ClearControlValue(tbUserSaveNew);   // call to a generic function found in CommonScripts.js
}
function SavePassword()
{
    // copy the value to the current password label
    lblCurrentPassNew.innerText = tbPassSaveNew.value;
    //ClearControlValue(tbPassSaveNew);   // call to a generic function found in CommonScripts.js
}

function LoadPasswordValue()
{
     tbPassSaveNew.value = lblCurrentPassNew.innerText;
}

function LoadUserNameValue()
{
     tbUserSaveNew.value = lblCurrentUserNameNew.innerText;
}

