if(typeof ServiceTier == "undefined") ServiceTier={};
if(typeof ServiceTier.QA == "undefined") ServiceTier.QA={};
ServiceTier.QA_class = function() {};
Object.extend(ServiceTier.QA_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	addQA: function(question) {
		return this.invoke("addQA", {"question":question}, this.addQA.getArguments().slice(1));
	},
	answer: function(id, adminId, question, answer) {
		return this.invoke("answer", {"id":id, "adminId":adminId, "question":question, "answer":answer}, this.answer.getArguments().slice(4));
	},
	search: function(customer, manager, status) {
		return this.invoke("search", {"customer":customer, "manager":manager, "status":status}, this.search.getArguments().slice(3));
	},
	remove: function(arrId, customer, manager, status) {
		return this.invoke("remove", {"arrId":arrId, "customer":customer, "manager":manager, "status":status}, this.remove.getArguments().slice(4));
	},
	url: '/ajaxpro/ServiceTier.QA,ServiceTier.ashx'
}));
ServiceTier.QA = new ServiceTier.QA_class();

