addNamespace("UserServerInterface");
UserServerInterface_class = function() {};
Object.extend(UserServerInterface_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	HelloWorld: function() {
		return this.invoke("HelloWorld", {}, this.HelloWorld.getArguments().slice(0));
	},
	Login: function(UserName, UserPwd, VerifyCode) {
		return this.invoke("Login", {"UserName":UserName, "UserPwd":UserPwd, "VerifyCode":VerifyCode}, this.Login.getArguments().slice(3));
	},
	IsLogin: function() {
		return this.invoke("IsLogin", {}, this.IsLogin.getArguments().slice(0));
	},
	Logout: function() {
		return this.invoke("Logout", {}, this.Logout.getArguments().slice(0));
	},
	RegisterUser: function(UserName, VerifyCode) {
		return this.invoke("RegisterUser", {"UserName":UserName, "VerifyCode":VerifyCode}, this.RegisterUser.getArguments().slice(2));
	},
	GetUserInformation: function() {
		return this.invoke("GetUserInformation", {}, this.GetUserInformation.getArguments().slice(0));
	},
	UpdateUserInfo: function(name, mobile, phone, cateA, cateB, area, city, zipcode, website, caddr, cname, cfax) {
		return this.invoke("UpdateUserInfo", {"name":name, "mobile":mobile, "phone":phone, "cateA":cateA, "cateB":cateB, "area":area, "city":city, "zipcode":zipcode, "website":website, "caddr":caddr, "cname":cname, "cfax":cfax}, this.UpdateUserInfo.getArguments().slice(12));
	},
	CreateChild: function(strEmail, strName, strPwd, strMobile, strPhone, strFax, strCName, strCAddr, strCat1, strCat2, strArea, strCity, strZipcode, strWeburl) {
		return this.invoke("CreateChild", {"strEmail":strEmail, "strName":strName, "strPwd":strPwd, "strMobile":strMobile, "strPhone":strPhone, "strFax":strFax, "strCName":strCName, "strCAddr":strCAddr, "strCat1":strCat1, "strCat2":strCat2, "strArea":strArea, "strCity":strCity, "strZipcode":strZipcode, "strWeburl":strWeburl}, this.CreateChild.getArguments().slice(14));
	},
	RegUserEx: function(email, verifycode) {
		return this.invoke("RegUserEx", {"email":email, "verifycode":verifycode}, this.RegUserEx.getArguments().slice(2));
	},
	GetUserPwd: function(email, vercode) {
		return this.invoke("GetUserPwd", {"email":email, "vercode":vercode}, this.GetUserPwd.getArguments().slice(2));
	},
	GetAreaData: function() {
		return this.invoke("GetAreaData", {}, this.GetAreaData.getArguments().slice(0));
	},
	GetCityData: function(province) {
		return this.invoke("GetCityData", {"province":province}, this.GetCityData.getArguments().slice(1));
	},
	GetBigClassData: function() {
		return this.invoke("GetBigClassData", {}, this.GetBigClassData.getArguments().slice(0));
	},
	GetSmallClassData: function(bigclass) {
		return this.invoke("GetSmallClassData", {"bigclass":bigclass}, this.GetSmallClassData.getArguments().slice(1));
	},
	GetUserIDInfo: function() {
		return this.invoke("GetUserIDInfo", {}, this.GetUserIDInfo.getArguments().slice(0));
	},
	UserInfoIsFull: function() {
		return this.invoke("UserInfoIsFull", {}, this.UserInfoIsFull.getArguments().slice(0));
	},
	url: '/ajaxpro/UserServerInterface,App_Code.7itgfrj9.ashx'
}));
UserServerInterface = new UserServerInterface_class();

