StaticDocument_class = function() {};
Object.extend(StaticDocument_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetCountryList: function() {
		return this.invoke("GetCountryList", {}, this.GetCountryList.getArguments().slice(0));
	},
	GetProvinceList: function(vCountryId) {
		return this.invoke("GetProvinceList", {"vCountryId":vCountryId}, this.GetProvinceList.getArguments().slice(1));
	},
	GetCityList: function(vCountryId, vProvinceList) {
		return this.invoke("GetCityList", {"vCountryId":vCountryId, "vProvinceList":vProvinceList}, this.GetCityList.getArguments().slice(2));
	},
	url: '/ajaxpro/NetRanking.Web.Page.Utility.StaticDocument,NetRanking.Web.ashx'
}));
StaticDocument = new StaticDocument_class();


