addNamespace("ccboss.wuser");
ccboss.wuser.userZC_class = Class.create();
ccboss.wuser.userZC_class.prototype = (new AjaxPro.Request()).extend({
	userZCFun: function(xName, xPassword, xEmail, xQuestion, xAnswer, xYZM, callback) {
		return this.invoke("userZCFun", {"xName":xName, "xPassword":xPassword, "xEmail":xEmail, "xQuestion":xQuestion, "xAnswer":xAnswer, "xYZM":xYZM}, callback);
	},
	userIfAtUser: function(xName, callback) {
		return this.invoke("userIfAtUser", {"xName":xName}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/ccboss.wuser.userZC,ccboss.wuser.ashx";
	}
})
ccboss.wuser.userZC = new ccboss.wuser.userZC_class();

