var HelpService=function() {
HelpService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
HelpService.prototype={
GetHelp:function(HelpID,succeededCallback, failedCallback, userContext) {
return this._invoke(HelpService.get_path(), 'GetHelp',false,{HelpID:HelpID},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("/NanoMaterials/HelpService.asmx");
HelpService.GetHelp= function(HelpID,onSuccess,onFailed,userContext) {HelpService._staticInstance.GetHelp(HelpID,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('OCDE.DCP.Entities');
if (typeof(OCDE.DCP.Entities.HelpItem) === 'undefined') {
OCDE.DCP.Entities.HelpItem=gtc("OCDE.DCP.Entities.HelpItem");
OCDE.DCP.Entities.HelpItem.registerClass('OCDE.DCP.Entities.HelpItem');
}
