troubleshooting_class = function() {};
Object.extend(troubleshooting_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	score_solution: function(problem, resolution, score) {
		return this.invoke("score_solution", {"problem":problem, "resolution":resolution, "score":score}, this.score_solution.getArguments().slice(3));
	},
	load_problems: function(category) {
		return this.invoke("load_problems", {"category":category}, this.load_problems.getArguments().slice(1));
	},
	load_common_problems: function(max) {
		return this.invoke("load_common_problems", {"max":max}, this.load_common_problems.getArguments().slice(1));
	},
	load_resolutions: function(problemid) {
		return this.invoke("load_resolutions", {"problemid":problemid}, this.load_resolutions.getArguments().slice(1));
	},
	url: '/ajaxpro/troubleshooting,App_Web_vqvzhnto.ashx'
}));
troubleshooting = new troubleshooting_class();

