(function(a) {
    a.alerts = {
        verticalOffset: -75, horizontalOffset: 0, repositionOnResize: true, overlayOpacity: 0.50, overlayColor: "#FFF", draggable: true, okButton: "&nbsp;\u786e\u5b9a&nbsp;", cancelButton: "&nbsp;\u53d6\u6d88&nbsp;", dialogClass: null, alert: function(b, c, d, _href, isIframeRedirect) {
            if (c == null) {
                c = "\u63d0\u793a"
            } a.alerts._show(c, b, null, "alert", function(e) {
                if (d) {
                    d(e)
                }
            }, null, null, null, null, _href, isIframeRedirect)
        }, confirm: function(b, c, d, _href, isIframeRedirect) {
            if (c == null) {
                c = "\u8bf7\u786e\u8ba4"
            } a.alerts._show(c, b, null, "confirm", function(e) {
                if (d) {
                    d(e)
                }
            }, null, null, null, null, _href, isIframeRedirect)
        }, prompt: function(b, c, d, e, _href, isIframeRedirect) {
            if (d == null) {
                d = "\u8bf7\u586b\u5199"
            } a.alerts._show(d, b, c, "prompt", function(f) {
                if (e) {
                    e(f)
                }
            }, null, null, null, null, _href, isIframeRedirect)
        }, openBox: function(f, g, b, c, e, d, i, _href, isIframeRedirect) {
            if (g == null) {
                g = "\u63d0\u793a"
            } a.alerts._show(g, f, null, "openBox", function(h) {
                if (i) {
                    i(h)
                }
            }, b, c, e, d, _href, isIframeRedirect)
        }, editBox: function(f, g, b, c, e, d, i, _href, isIframeRedirect) {
            if (g == null) {
                g = "\u63d0\u793a"
            } a.alerts._show(g, f, null, "editBox", function(h) {
                if (i) {
                    i(h)
                }
            }, b, c, e, d, _href, isIframeRedirect)
        }, overAlert: function(c, b, _href, isIframeRedirect) {
            a.alerts._overShow(c, b, _href, isIframeRedirect)
        }, _overShow: function(d, c, _href, isIframeRedirect) {
            if (c == null) {
                c = 3000
            } var b = c + 600;
            a("body").append('<div id="over_container" style="display:none"><div id="over_message"></div></div>');
            a("#over_message").text(d).html(a("#over_message").text().replace(/\n/g, "<br />"));
            if (a.alerts.dialogClass) {
                a("#over_container").addClass(a.alerts.dialogClass)
            } var e = (a.browser.msie && parseInt(a.browser.version) <= 6) ? "absolute" : "fixed";
            a("#over_container").css({
                position: e, zIndex: 99999, width: 350, padding: 0, margin: 0
            }).show("fast");
            a("#over_container").css({
                minWidth: a("#over_container").outerWidth(), maxWidth: a("#over_container").outerWidth()
            });
            a.alerts._overReposition();
            setTimeout(function() {
                a("#over_container").hide("fast")
            }, c);
            setTimeout(function() {
                a("#over_container").remove()
            }, b)
        }, _overReposition: function() {
            var c = 4;
            var b = ((a(window).width() / 2) - (a("#over_container").outerWidth() / 2)) + a.alerts.horizontalOffset;
            if (c < 0) {
                c = 0
            } if (b < 0) {
                b = 0
            } if (a.browser.msie && parseInt(a.browser.version) <= 6) {
                c = c + a(window).scrollTop()
            } if (a.browser.msie && parseInt(a.browser.version) <= 6) {
                b = b - 175
            } a("#over_container").css({
                top: c + "px", left: b + "px"
            });
            a("#popup_overlay").height(a(document).height())
        }, _show: function(j, b, k, g, m, l, c, f, n, _href, isIframeRedirect) {
            a.alerts._hide();
            a.alerts._overlay("show");
            if (g == "editBox") //¸¡¶¯¿ò¼ÜÄÚÈÝÇøÓòÎÞ±ß¾à
            {
                a("body").append('<div id="popup_containerByIframe" style="display:none"><h1 id="popup_titleByIframe"></h1><em id="ctl"></em><em id="cbl"></em><em id="ctr"></em><em id="cbr"></em><span id="popup_closeByIframe"></span><div id="popup_contentByIframe"><div id="popup_messageByIframe"></div></div></div>');
                if (a.alerts.dialogClass) {
                    a("#popup_containerByIframe").addClass(a.alerts.dialogClass)
                } var i = (a.browser.msie && parseInt(a.browser.version) <= 6) ? "absolute" : "fixed";
                a("#popup_containerByIframe").css({
                    position: i, zIndex: 99999, padding: 0, margin: 0
                }).fadeIn("fast");

                a("#popup_titleByIframe").text(j);
                a("#popup_contentByIframe").addClass(g);
                a("#popup_containerByIframe").css({});
            }
            else {
                a("body").append('<div id="popup_container" style="display:none"><h1 id="popup_title"></h1><em id="ctl"></em><em id="cbl"></em><em id="ctr"></em><em id="cbr"></em><span id="popup_close"></span><div id="popup_content"><div id="popup_message"></div></div></div>');
                if (a.alerts.dialogClass) {
                    a("#popup_container").addClass(a.alerts.dialogClass)
                } var i = (a.browser.msie && parseInt(a.browser.version) <= 6) ? "absolute" : "fixed";
                a("#popup_container").css({
                    position: i, zIndex: 99999, padding: 0, margin: 0
                }).fadeIn("fast");

                a("#popup_title").text(j);
                a("#popup_content").addClass(g);
                if (g != "openBox") {
                    a("#popup_message").text(b).html(a("#popup_message").text().replace(/\n/g, "<br />"))
                }
                a("#popup_container").css({});
            }

            var ID = Math.round(Math.random(0) * 1000);
            switch (g) {
                case "alert": a("#popup_message").after('<div id="popup_panel"><input type="button" value="' + a.alerts.okButton + '" id="popup_ok" /></div>');
                    a("#popup_ok").click(function() {
                        a.alerts._hide();
                        if ((a("#popup_containerByIframe").css("display") != "none") && (a("#popup_containerByIframe").css("display") != undefined)) {
                            a.alerts._overlay("show");
                        }
                        m(true);

                        if (_href) {
                            if (_href != "") {
                                if ((parent) && (!isIframeRedirect)) {
                                    window.top.location.href = _href;

                                    return;
                                }

                                location.href = _href;
                            }
                        }
                    });
                    a("#popup_ok").focus().keypress(function(h) {
                        if (h.keyCode == 13 || h.keyCode == 27) {
                            a("#popup_ok").trigger("click")
                        }
                    });
                    break;
                case "confirm": a("#popup_message").after('<div id="popup_panel"><input type="button" value="' + a.alerts.okButton + '" id="popup_ok" /> <input type="button" value="' + a.alerts.cancelButton + '" id="popup_cancel" /></div>');
                    a("#popup_ok").click(function() {
                        a.alerts._hide();
                        if ((a("#popup_containerByIframe").css("display") != "none") && (a("#popup_containerByIframe").css("display") != undefined)) {
                            a.alerts._overlay("show");
                        }
                        if (m) {
                            m(true)
                        }
                    });
                    a("#popup_cancel").click(function() {
                        a.alerts._hide();
                        if ((a("#popup_containerByIframe").css("display") != "none") && (a("#popup_containerByIframe").css("display") != undefined)) {
                            a.alerts._overlay("show");
                        }
                        if (m) {
                            m(false)
                        }
                    });
                    a("#popup_ok").focus();
                    a("#popup_ok, #popup_cancel").keypress(function(h) {
                        if (h.keyCode == 13) {
                            a("#popup_ok").trigger("click")
                        } if (h.keyCode == 27) {
                            a("#popup_cancel").trigger("click")
                        }
                    });
                    break;
                case "prompt": a("#popup_message").append('<br /><input type="text" size="30" id="popup_prompt" />').after('<div id="popup_panel"><input type="button" value="' + a.alerts.okButton + '" id="popup_ok" /> <input type="button" value="' + a.alerts.cancelButton + '" id="popup_cancel" /></div>');
                    a("#popup_prompt").width(a("#popup_message").width() - 10);
                    a("#popup_ok").click(function() {
                        var e = a("#popup_prompt").val();
                        a.alerts._hide();
                        if ((a("#popup_containerByIframe").css("display") != "none") && (a("#popup_containerByIframe").css("display") != undefined)) {
                            a.alerts._overlay("show");
                        }
                        if (m) {
                            m(e)
                        }
                    });
                    a("#popup_cancel").click(function() {
                        a.alerts._hide();
                        if ((a("#popup_containerByIframe").css("display") != "none") && (a("#popup_containerByIframe").css("display") != undefined)) {
                            a.alerts._overlay("show");
                        }
                        if (m) {
                            m(null)
                        }
                    });
                    a("#popup_prompt, #popup_ok, #popup_cancel").keypress(function(h) {
                        if (h.keyCode == 13) {
                            a("#popup_ok").trigger("click")
                        } if (h.keyCode == 27) {
                            a("#popup_cancel").trigger("click")
                        }
                    });
                    if (k) {
                        a("#popup_prompt").val(k)
                    } a("#popup_prompt").focus().select();
                    break;
                case "openBox": a("#popup_message").append(a(b).html());
                    if (l) {
                        a("#popup_container").css({
                            width: l + "px"
                        })
                    } if (c) {
                        a("#popup_container").css({
                            height: c + "px"
                        });
                        a("#popup_message").css({
                            height: (c - 48) + "px"
                        })
                    } a.alerts._reposition();
                    if (f) {
                        a(f).click(function() {
                            a.alerts._hide();
                            if ((a("#popup_containerByIframe").css("display") != "none") && (a("#popup_containerByIframe").css("display") != undefined)) {
                                a.alerts._overlay("show");
                            }
                            if (m) {
                                m(true)
                            }
                        })
                    } if (n) {
                        a(n).click(function() {
                            a.alerts._hide();
                            if ((a("#popup_containerByIframe").css("display") != "none") && (a("#popup_containerByIframe").css("display") != undefined)) {
                                a.alerts._overlay("show");
                            }
                            return false;
                            if (m) {
                                m(false)
                            }
                        })
                    } break;
                case "editBox": a("#popup_messageByIframe").after(a("<iframe id=\"open_DialogEditBox_" + ID + "\" name=\"open_DialogEditBox_" + ID + "\" src=\"" + b + "\" onload=\"javascript:ReSizeiFrame(this)\" width=\"100%\" scrolling=\"no\" frameborder=\"0\"></iframe>"));
                    if (l) {
                        a("#popup_containerByIframe").css({
                            width: l + "px"
                        })
                    } if (c) {
                        a("#popup_containerByIframe").css({
                            height: c + "px"
                        });
                        a("#popup_messageByIframe").css({
                            height: (c - 48) + "px"
                        })
                    } a.alerts._repositionByIframe();
                    if (f) {
                        a(f).click(function() {
                            a.alerts._hideByIframe();
                            if ((a("#popup_container").css("display") != "none") && (a("#popup_container").css("display") != undefined)) {
                                a.alerts._overlay("show");
                            }
                            if (m) {
                                m(true)
                            }
                        })
                    } if (n) {
                        a(n).click(function() {
                            a.alerts._hideByIframe();
                            if ((a("#popup_container").css("display") != "none") && (a("#popup_container").css("display") != undefined)) {
                                a.alerts._overlay("show");
                            }
                            return false;
                            if (m) {
                                m(false)
                            }
                        })
                    }
                    a("#popup_closeByIframe").click(function() {
                        a.alerts._hideByIframe();
                        if ((a("#popup_container").css("display") != "none") && (a("#popup_container").css("display") != undefined)) {
                            a.alerts._overlay("show");
                        }
                        if (m) {
                            m(false);

                            if (_href) {
                                if (_href != "") {
                                    if ((parent) && (!isIframeRedirect)) {
                                        window.top.location.href = _href;

                                        return;
                                    }

                                    location.href = _href;
                                }
                            }
                        }
                    });
                    if (a.alerts.draggable) {
                        try {
                            a("#popup_containerByIframe").draggable({
                                handle: a("#popup_titleByIframe")
                            });

                            a("#popup_titleByIframe").css({
                                cursor: "move"
                            })
                        } catch (d) {

                        }
                    }

                    a.alerts._repositionByIframe();
                    a.alerts._maintainPositionByIframe(true);
                    break
            } a("#popup_close").click(function() {
                a.alerts._hide();
                if ((a("#popup_containerByIframe").css("display") != "none") && (a("#popup_containerByIframe").css("display") != undefined)) {
                    a.alerts._overlay("show");
                }
                if (m) {
                    m(false);

                    if (_href) {
                        if (_href != "") {
                            if ((parent) && (!isIframeRedirect)) {
                                window.top.location.href = _href;

                                return;
                            }

                            location.href = _href;
                        }
                    }
                }
            });
            if (a.alerts.draggable) {
                try {
                    a("#popup_container").draggable({
                        handle: a("#popup_title")
                    });

                    a("#popup_title").css({
                        cursor: "move"
                    })
                } catch (d) {

                }
            }

            a.alerts._reposition();
            a.alerts._maintainPosition(true);
        }, _hide: function() {
            a("#popup_container").remove();

            a.alerts._overlay("hide");
            a.alerts._maintainPosition(false)
        }, _hideByIframe: function() {
            a("#popup_containerByIframe").remove();

            a.alerts._overlay("hide");
            a.alerts._maintainPositionByIframe(false)
        }, _overlay: function(b) {
            switch (b) {
                case "show": a.alerts._overlay("hide");
                    a("BODY").append('<div id="popup_overlay"></div>');
                    a("#popup_overlay").css({
                        position: "absolute", zIndex: 99998, top: "0px", left: "0px", width: "100%", height: a(document).height(), background: a.alerts.overlayColor, opacity: a.alerts.overlayOpacity
                    });
                    break;
                case "hide": a("#popup_overlay").remove();
                    break
            }
        }, _reposition: function() {
            var c = ((a(window).height() / 2) - (a("#popup_container").height() / 2)) + a.alerts.verticalOffset;
            var b = ((a(window).width() / 2) - (a("#popup_container").width() / 2)) + a.alerts.horizontalOffset;

            if (c < 0) {
                c = 0
            } if (b < 0) {
                b = 0
            } if (a.browser.msie && parseInt(a.browser.version) <= 6) {
                c = c + a(window).scrollTop()
            } a("#popup_container").css({
                top: c + "px", left: b + "px"
            });
            a("#popup_overlay").height(a(document).height())
        }, _repositionByIframe: function() {
            //var c = ((a(window).height() / 2) - (a("#popup_containerByIframe").height() / 2)) + a.alerts.verticalOffset;
            var c = ((a(window).height() / 2) - (a("#popup_containerByIframe").height() / 2));
            var b = ((a(window).width() / 2) - (a("#popup_containerByIframe").width() / 2)) + a.alerts.horizontalOffset;

            if (c < 0) {
                c = 0
            } if (b < 0) {
                b = 0
            } if (a.browser.msie && parseInt(a.browser.version) <= 6) {
                c = c + a(window).scrollTop()
            } a("#popup_containerByIframe").css({
                top: c + "px", left: b + "px"
            });

            a("#popup_overlay").height(a(document).height())
        }, _maintainPosition: function(b) {
            if (a.alerts.repositionOnResize) {
                switch (b) {
                    case true: a(window).bind("resize", a.alerts._reposition);
                        break;
                    case false: a(window).unbind("resize", a.alerts._reposition);
                        break
                }
            }
        }, _maintainPositionByIframe: function(b) {
            if (a.alerts.repositionOnResize) {
                switch (b) {
                    case true: a(window).bind("resize", a.alerts._repositionByIframe);
                        break;
                    case false: a(window).unbind("resize", a.alerts._repositionByIframe);
                        break
                }
            }
        }
    };
    hiAlert = function(b, c, d, _href, isIframeRedirect) {
        a.alerts.alert(b, c, d, _href, isIframeRedirect)
    };
    hiConfirm = function(b, c, d, _href, isIframeRedirect) {
        a.alerts.confirm(b, c, d, _href, isIframeRedirect)
    };
    hiPrompt = function(b, c, d, e, _href, isIframeRedirect) {
        a.alerts.prompt(b, c, d, e, _href, isIframeRedirect)
    };
    hiBox = function(f, g, b, c, e, d, i, _href, isIframeRedirect) {
        a.alerts.openBox(f, g, b, c, e, d, i, _href, isIframeRedirect)
    };
    editBox = function(f, g, b, c, e, d, i, _href, isIframeRedirect) {
        a.alerts.editBox(f, g, b, c, e, d, i, _href, isIframeRedirect)
    };
    hiOverAlert = function(c, b, _href, isIframeRedirect) {
        a.alerts.overAlert(c, b, _href, isIframeRedirect)
    }
    hiClose = function() {
        a.alerts._hideByIframe();
        if ((a("#popup_container").css("display") != "none") && (a("#popup_container").css("display") != undefined)) {
            a.alerts._overlay("show");
        }
    }
    hiReSizeiFrame = function() {
        a.alerts._repositionByIframe();
    }
})(jQuery);
