function ParaConfigMaga(){
    this.arr_print_a_list = new Array();
    this.arr_print_b_list = new Array();

    this.arr_paper_list = new Array();

    this.arr_paper_part_list = new Array();

    this.arr_binding_list = new Array();
    this.arr_stamp_list = new Array();
    this.arr_stamp_color_list = new Array();
    this.arr_emboss_list = new Array();
    this.arr_spot_list = new Array();

    this.arr_ship_day_list = new Array();
    this.arr_ship_info_list = new Array();
    this.arr_ship_info_other_list = new Array();

    this.arr_discount_list = new Array();

    this.info_proof = new Object();
    this.info_ctp = new Object();
    this.info_coating = new Object();
    this.info_punch = new Object();
    this.info_subcard = new Object();
    this.info_fold = new Object();
    this.info_perpack = new Object();
    this.info_diecut = new Object();
    this.info_uvcoat = new Object();
    this.info_ship_ny = new Object();
    this.info_ship = new Object();
    this.info_ship_air2_rate = new Object();
    this.info_ship_air5_rate = new Object();

    this.gl_max_print_r = 0;
    this.gl_max_air2_weight = 0;
/*
    this.arr_thickness = new Array(
        new Array(0.066,0.081,0.097,0.122,0.151,0.18 ,0.231,0.288),
        new Array(0.073,0.09, 0.112,0.142,0.175,0.197,0.255,0.313),
        new Array(0.092,0.112,0.132,0.162,0.201,0.247,0.287),
        new Array(0.130,0.140,0.170,0.210,0.250,0.280,0.340)
    );
*/
    this.arr_btype_width = new Array(788,394,260,197,157,130,112,97,86,78);
    this.arr_btype_height = new Array(545,272,181,136,109,90);

    this.arr_atype_width = new Array(636,318,212,159,127,106,91,80,71,64);
    this.arr_atype_height = new Array(939,470,313,235,188,157,134,117,104,94);

    this.arr_btype_valid = new Array(
        new Array(0,1,0,1,0,1,0,1,0,0),
        new Array(1,1,1,1,0,1,0,1,0,0),
        new Array(0,1,0,1,0,0,0,1,0,0),
        new Array(1,1,1,1,0,1,0,1,0,0),
        new Array(0,0,0,0,0,0,0,0,0,0),
        new Array(1,1,0,1,0,0,0,1,0,0)
    );

    this.arr_atype_valid = new Array(
        new Array(0,1,0,1,0,1,0,1,0,0),
        new Array(1,1,1,1,0,1,0,1,0,0),
        new Array(0,1,0,1,0,0,0,1,0,0),
        new Array(1,1,1,1,0,1,0,1,0,0),
        new Array(0,0,0,0,0,0,0,0,0,0),
        new Array(1,1,0,1,0,0,0,1,0,0),
        new Array(0,0,0,0,0,0,0,0,0,0),
        new Array(1,1,1,1,0,1,0,1,0,0),
        new Array(0,0,0,0,0,0,0,0,0,0),
        new Array(0,0,0,0,0,0,0,0,0,0)
    );

    this.setCheckParse = setCheckParse;

    function setCheckParse(){
        var i = 0,j = 0,len = 0;
        var old_part = "";
        for(i = 0; i < this.arr_paper_list.length; i++){
            if(this.arr_paper_list[i].PAPER_TYPE != old_part){
                this.arr_paper_part_list.push(this.arr_paper_list[i].PAPER_TYPE);
                old_part = this.arr_paper_list[i].PAPER_TYPE;
            }
        }
        for(i = 0; i < this.arr_ship_info_list.length; i++){
            if(gl_config.arr_ship_info_list[i].SHIP_TYPE == "air2"){
                if(this.arr_ship_info_list[i].SHIP_WEIGHT > this.gl_max_air2_weight) this.gl_max_air2_weight = this.arr_ship_info_list[i].SHIP_WEIGHT;
            }
        }

        len = this.arr_print_a_list.length;
        this.gl_max_print_r = this.arr_print_a_list[len-1].PRINT_R;


    }
}
