var HelpService=function() {
HelpService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
HelpService.prototype={
GetHelp:function(name,language,succeededCallback, failedCallback, userContext) {
return this._invoke(HelpService.get_path(), 'GetHelp',false,{name:name,language:language},succeededCallback,failedCallback,userContext); }}
HelpService.registerClass('HelpService',Sys.Net.WebServiceProxy);
HelpService._staticInstance = new HelpService();
HelpService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; HelpService._staticInstance._path = value; }
HelpService.get_path = function() { return HelpService._staticInstance._path; }
HelpService.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
HelpService._staticInstance._timeout = value; }
HelpService.get_timeout = function() { 
return HelpService._staticInstance._timeout; }
HelpService.set_defaultUserContext = function(value) { 
HelpService._staticInstance._userContext = value; }
HelpService.get_defaultUserContext = function() { 
return HelpService._staticInstance._userContext; }
HelpService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; HelpService._staticInstance._succeeded = value; }
HelpService.get_defaultSucceededCallback = function() { 
return HelpService._staticInstance._succeeded; }
HelpService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; HelpService._staticInstance._failed = value; }
HelpService.get_defaultFailedCallback = function() { 
return HelpService._staticInstance._failed; }
HelpService.set_path("/oecdgroups2/Shared/HelpService.asmx");
HelpService.GetHelp= function(name,language,onSuccess,onFailed,userContext) {HelpService._staticInstance.GetHelp(name,language,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('BodiesServices.BusinessEntities');
if (typeof(BodiesServices.BusinessEntities.HelpItem) === 'undefined') {
BodiesServices.BusinessEntities.HelpItem=gtc("BodiesServices.BusinessEntities.HelpItem");
BodiesServices.BusinessEntities.HelpItem.registerClass('BodiesServices.BusinessEntities.HelpItem');
}
