var MessageBoard_ScriptServices=function() {
MessageBoard_ScriptServices.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
MessageBoard_ScriptServices.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return MessageBoard_ScriptServices._staticInstance.get_path();},
LoadQuote:function(QuoteRownum,MySpan,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'LoadQuote',false,{QuoteRownum:QuoteRownum,MySpan:MySpan},succeededCallback,failedCallback,userContext); },
DeleteView:function(ThreadID,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DeleteView',false,{ThreadID:ThreadID},succeededCallback,failedCallback,userContext); }}
MessageBoard_ScriptServices.registerClass('MessageBoard_ScriptServices',Sys.Net.WebServiceProxy);
MessageBoard_ScriptServices._staticInstance = new MessageBoard_ScriptServices();
MessageBoard_ScriptServices.set_path = function(value) { MessageBoard_ScriptServices._staticInstance.set_path(value); }
MessageBoard_ScriptServices.get_path = function() { return MessageBoard_ScriptServices._staticInstance.get_path(); }
MessageBoard_ScriptServices.set_timeout = function(value) { MessageBoard_ScriptServices._staticInstance.set_timeout(value); }
MessageBoard_ScriptServices.get_timeout = function() { return MessageBoard_ScriptServices._staticInstance.get_timeout(); }
MessageBoard_ScriptServices.set_defaultUserContext = function(value) { MessageBoard_ScriptServices._staticInstance.set_defaultUserContext(value); }
MessageBoard_ScriptServices.get_defaultUserContext = function() { return MessageBoard_ScriptServices._staticInstance.get_defaultUserContext(); }
MessageBoard_ScriptServices.set_defaultSucceededCallback = function(value) { MessageBoard_ScriptServices._staticInstance.set_defaultSucceededCallback(value); }
MessageBoard_ScriptServices.get_defaultSucceededCallback = function() { return MessageBoard_ScriptServices._staticInstance.get_defaultSucceededCallback(); }
MessageBoard_ScriptServices.set_defaultFailedCallback = function(value) { MessageBoard_ScriptServices._staticInstance.set_defaultFailedCallback(value); }
MessageBoard_ScriptServices.get_defaultFailedCallback = function() { return MessageBoard_ScriptServices._staticInstance.get_defaultFailedCallback(); }
MessageBoard_ScriptServices.set_path("/code/ScriptService/Messageboard.asmx");
MessageBoard_ScriptServices.LoadQuote= function(QuoteRownum,MySpan,onSuccess,onFailed,userContext) {MessageBoard_ScriptServices._staticInstance.LoadQuote(QuoteRownum,MySpan,onSuccess,onFailed,userContext); }
MessageBoard_ScriptServices.DeleteView= function(ThreadID,onSuccess,onFailed,userContext) {MessageBoard_ScriptServices._staticInstance.DeleteView(ThreadID,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(LoadQuoteClass) === 'undefined') {
var LoadQuoteClass=gtc("LoadQuoteClass");
LoadQuoteClass.registerClass('LoadQuoteClass');
}
