addNamespace("AjaxMethod");
AjaxMethod_class = function() {};
Object.extend(AjaxMethod_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetCountryList: function() {
		return this.invoke("GetCountryList", {}, this.GetCountryList.getArguments().slice(0));
	},
	GetProvinceList: function(countryid) {
		return this.invoke("GetProvinceList", {"countryid":countryid}, this.GetProvinceList.getArguments().slice(1));
	},
	GetCityList: function(provinceid) {
		return this.invoke("GetCityList", {"provinceid":provinceid}, this.GetCityList.getArguments().slice(1));
	},
	GetAdministrativeList: function(cityid) {
		return this.invoke("GetAdministrativeList", {"cityid":cityid}, this.GetAdministrativeList.getArguments().slice(1));
	},
	GetCommercialList: function(cityid) {
		return this.invoke("GetCommercialList", {"cityid":cityid}, this.GetCommercialList.getArguments().slice(1));
	},
	IfHaveMember: function(MemberID) {
		return this.invoke("IfHaveMember", {"MemberID":MemberID}, this.IfHaveMember.getArguments().slice(1));
	},
	CheckLoginName: function(LoginName) {
		return this.invoke("CheckLoginName", {"LoginName":LoginName}, this.CheckLoginName.getArguments().slice(1));
	},
	CheckMobile: function(Mobile) {
		return this.invoke("CheckMobile", {"Mobile":Mobile}, this.CheckMobile.getArguments().slice(1));
	},
	CheckCertificate: function(Certificate) {
		return this.invoke("CheckCertificate", {"Certificate":Certificate}, this.CheckCertificate.getArguments().slice(1));
	},
	getDataByPKID: function(PKID) {
		return this.invoke("getDataByPKID", {"PKID":PKID}, this.getDataByPKID.getArguments().slice(1));
	},
	url: '/ajaxpro/AjaxMethod,App_Code.fg-fufsz.ashx'
}));
AjaxMethod = new AjaxMethod_class();

