我有个页面需要做一个密码二次确认的操作,用的是subModal弹出层,function RebuildData(returnVal) {
            if (returnVal) {
                document.getElementById('btnQuery').click();
            }
        }
        var _cid;
        var _type;
        function LogicCodeDistribution() {
            showPopWin('LogicCodeManager.aspx?id=' + _cid + '&gp=' + _type, 404, 300, RebuildData, '分配');
        }        function Modify() {
            showPopWin('DealerInfor.aspx?type=edit&id=' + _cid + '', 552, 300, RebuildData, '信息维护')
        }        function ConfirmAdminPwd(cid, nfunc, type) {//这里是密码二次确认弹出
            _cid = cid;
            _type = type;
            showPopWin('/system/AdminPwdConfirm.aspx', 300, 30, nfunc , '管理员密码确认');
        }
现在出现了一个问题,当密码确认成功后,调用modify或者LogicCodeDistribution方法弹出的窗口无法显示设置的url
这个要怎么解决??