var FaqService=function() {
FaqService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
FaqService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return FaqService._staticInstance.get_path();},
GetContentById:function(id,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetContentById',true,{id:id},succeededCallback,failedCallback,userContext); }}
FaqService.registerClass('FaqService',Sys.Net.WebServiceProxy);
FaqService._staticInstance = new FaqService();
FaqService.set_path = function(value) { FaqService._staticInstance.set_path(value); }
FaqService.get_path = function() { return FaqService._staticInstance.get_path(); }
FaqService.set_timeout = function(value) { FaqService._staticInstance.set_timeout(value); }
FaqService.get_timeout = function() { return FaqService._staticInstance.get_timeout(); }
FaqService.set_defaultUserContext = function(value) { FaqService._staticInstance.set_defaultUserContext(value); }
FaqService.get_defaultUserContext = function() { return FaqService._staticInstance.get_defaultUserContext(); }
FaqService.set_defaultSucceededCallback = function(value) { FaqService._staticInstance.set_defaultSucceededCallback(value); }
FaqService.get_defaultSucceededCallback = function() { return FaqService._staticInstance.get_defaultSucceededCallback(); }
FaqService.set_defaultFailedCallback = function(value) { FaqService._staticInstance.set_defaultFailedCallback(value); }
FaqService.get_defaultFailedCallback = function() { return FaqService._staticInstance.get_defaultFailedCallback(); }
FaqService.set_path("/services/faqservice.asmx");
FaqService.GetContentById= function(id,onSuccess,onFailed,userContext) {FaqService._staticInstance.GetContentById(id,onSuccess,onFailed,userContext); }

