CoinBox_class = function() {};
Object.extend(CoinBox_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetCities: function(countryName) {
		return this.invoke("GetCities", {"countryName":countryName}, this.GetCities.getArguments().slice(1));
	},
	CheckCaptcha: function(captchaText, name, surname, country, city, email, phoneNum, occupation, company) {
		return this.invoke("CheckCaptcha", {"captchaText":captchaText, "name":name, "surname":surname, "country":country, "city":city, "email":email, "phoneNum":phoneNum, "occupation":occupation, "company":company}, this.CheckCaptcha.getArguments().slice(9));
	},
	url: '/ajaxpro/CoinBox,App_Web_8by8to_e.ashx'
}));
CoinBox = new CoinBox_class();

