addNamespace("Ajax");
Ajax.index_class = Class.create();
Ajax.index_class.prototype = (new AjaxPro.Request()).extend({
	get_Main: function(str_Obj, callback) {
		return this.invoke("get_Main", {"str_Obj":str_Obj}, callback);
	},
	get_ElectronicPress: function(str_Obj, callback) {
		return this.invoke("get_ElectronicPress", {"str_Obj":str_Obj}, callback);
	},
	initialize: function() {
		this.url = "/ep/ajaxpro/Ajax.index,App_Code.ashx";
	}
})
Ajax.index = new Ajax.index_class();

