addNamespace("WebRoot_User_Register");
WebRoot_User_Register_class = Class.create();
WebRoot_User_Register_class.prototype = (new AjaxPro.Request()).extend({
	ValidateName: function(uname, callback) {
		return this.invoke("ValidateName", {"uname":uname}, callback);
	},
	ValidateForMail: function(Mail, callback) {
		return this.invoke("ValidateForMail", {"Mail":Mail}, callback);
	},
	ValidateForMob: function(Mob, callback) {
		return this.invoke("ValidateForMob", {"Mob":Mob}, callback);
	},
	CheckLong: function(str, callback) {
		return this.invoke("CheckLong", {"str":str}, callback);
	},
	CheckCode: function(strcode, callback) {
		return this.invoke("CheckCode", {"strcode":strcode}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/WebRoot_User_Register,App_Web_bwc3b5jp.ashx";
	}
})
WebRoot_User_Register = new WebRoot_User_Register_class();

