ResetPassword_class = function() {};
Object.extend(ResetPassword_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Reset: function(vVolunteerName, vEmail) {
		return this.invoke("Reset", {"vVolunteerName":vVolunteerName, "vEmail":vEmail}, this.Reset.getArguments().slice(2));
	},
	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.User.ResetPassword,NetRanking.Web.ashx'
}));
ResetPassword = new ResetPassword_class();

