﻿var _jiuCuoHelper = new JiuCuoHelper();

function JiuCuoHelper() {
    //打开纠错窗口
    this.OpenAddJiuCuoWidow = function() {

        this.FileUploadWindowID = "jbox_ExamSubjectSelect";

        var winTitle = "填写纠错信息";
        var jsonData = {};

        var attr = "width=600,height=500,center=true,resize=false, scrolling=false,minimizable=false,draggable=true,closeable=true,model=true";

        var source = { url: "/student/JiuCuoHelper.aspx?x=" + GetDateTimeSymbol(),
            method: "post",
            data: JSON.stringify(jsonData)
        };

        var buttons =
        [
            {
                text: "确定",
                fn: function() {
                    window.focus();
                    jBox.close("jbox_ExamSubjectSelect");
                }
            },
            {
                text: "关闭",
                fn: function() {
                    window.focus();
                    jBox.close("jbox_ExamSubjectSelect");
                }
            }
        ];

        jBox.open("jbox_ExamSubjectSelect", "iframe", source, winTitle, attr, null, function() { });
    }
}