addNamespace("Survey_Vote");
Survey_Vote_class = Class.create();
Survey_Vote_class.prototype = (new AjaxPro.Request()).extend({
	ShowSurvey: function(sum, callback) {
		return this.invoke("ShowSurvey", {"sum":sum}, callback);
	},
	Voting: function(sum, coun, callback) {
		return this.invoke("Voting", {"sum":sum, "coun":coun}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/Survey_Vote,App_Web_vote.aspx.6b73828.ashx";
	}
})
Survey_Vote = new Survey_Vote_class();

