﻿//关闭窗口
function Close() {
    top.opener = null;
    window.close();
}

//刷新验证码
function VerifyCode() {
    document.getElementById("ImgVerifyCode").src = "Base/VerifyCodePage.aspx?r=" + Math.random();
}

//跳转
function Redirect(url) {
    window.location.href = url;
}

//防止别人Frame
function frame() {
    if (top.location != self.location) {
        top.location = self.location;
    }
}