addNamespace("UserZC");
UserZC_class = Class.create();
UserZC_class.prototype = (new AjaxPro.Request()).extend({
	GetReturnCode: function(strName, callback) {
		return this.invoke("GetReturnCode", {"strName":strName}, callback);
	},
	GetReturnCodeIDCard: function(strIDCard, callback) {
		return this.invoke("GetReturnCodeIDCard", {"strIDCard":strIDCard}, callback);
	},
	GetReturnCheckBox: function(flag, callback) {
		return this.invoke("GetReturnCheckBox", {"flag":flag}, callback);
	},
	GetReturnCodeNickname: function(strNickname, callback) {
		return this.invoke("GetReturnCodeNickname", {"strNickname":strNickname}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/UserZC,UserM.ashx";
	}
})
UserZC = new UserZC_class();

