addNamespace("Yc.Web");
Yc.Web.AjaxProc_class = Class.create();
Object.extend(Yc.Web.AjaxProc_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	IsLogin: function() {
		return this.invoke("IsLogin", {}, this.IsLogin.getArguments().slice(0));
	},
	IsApply: function() {
		return this.invoke("IsApply", {}, this.IsApply.getArguments().slice(0));
	},
	IsApplyed: function(pid) {
		return this.invoke("IsApplyed", {"pid":pid}, this.IsApplyed.getArguments().slice(1));
	},
	IsComplete: function() {
		return this.invoke("IsComplete", {}, this.IsComplete.getArguments().slice(0));
	},
	initialize: function() {
		this.url = '/ajaxpro/Yc.Web.AjaxProc,Yc.Web.ashx';
	}
}));
Yc.Web.AjaxProc = new Yc.Web.AjaxProc_class();

