﻿var id
function getPassword(targetControlId,cypherPassword)
{
    id = targetControlId;
    PasswordReminderService.GetPassword(cypherPassword, succeedCallBack);
}
function succeedCallBack(result, eventArg) 
{
    document.getElementById(id).value=result
}
