Type.registerNamespace('SportsInsights');
SportsInsights.SportsInsightsWS=function() {
SportsInsights.SportsInsightsWS.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
SportsInsights.SportsInsightsWS.prototype={
GetChanges:function(PageName,succeededCallback, failedCallback, userContext) {
return this._invoke(SportsInsights.SportsInsightsWS.get_path(), 'GetChanges',false,{PageName:PageName},succeededCallback,failedCallback,userContext); },
GetPopups:function(PageName,succeededCallback, failedCallback, userContext) {
return this._invoke(SportsInsights.SportsInsightsWS.get_path(), 'GetPopups',false,{PageName:PageName},succeededCallback,failedCallback,userContext); }}
SportsInsights.SportsInsightsWS.registerClass('SportsInsights.SportsInsightsWS',Sys.Net.WebServiceProxy);
SportsInsights.SportsInsightsWS._staticInstance = new SportsInsights.SportsInsightsWS();
SportsInsights.SportsInsightsWS.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; SportsInsights.SportsInsightsWS._staticInstance._path = value; }
SportsInsights.SportsInsightsWS.get_path = function() { return SportsInsights.SportsInsightsWS._staticInstance._path; }
SportsInsights.SportsInsightsWS.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); }
SportsInsights.SportsInsightsWS._staticInstance._timeout = value; }
SportsInsights.SportsInsightsWS.get_timeout = function() { 
return SportsInsights.SportsInsightsWS._staticInstance._timeout; }
SportsInsights.SportsInsightsWS.set_defaultUserContext = function(value) { 
SportsInsights.SportsInsightsWS._staticInstance._userContext = value; }
SportsInsights.SportsInsightsWS.get_defaultUserContext = function() { 
return SportsInsights.SportsInsightsWS._staticInstance._userContext; }
SportsInsights.SportsInsightsWS.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; SportsInsights.SportsInsightsWS._staticInstance._succeeded = value; }
SportsInsights.SportsInsightsWS.get_defaultSucceededCallback = function() { 
return SportsInsights.SportsInsightsWS._staticInstance._succeeded; }
SportsInsights.SportsInsightsWS.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; SportsInsights.SportsInsightsWS._staticInstance._failed = value; }
SportsInsights.SportsInsightsWS.get_defaultFailedCallback = function() { 
return SportsInsights.SportsInsightsWS._staticInstance._failed; }
SportsInsights.SportsInsightsWS.set_path("/SportsInsightsWS.asmx");
SportsInsights.SportsInsightsWS.GetChanges= function(PageName,onSuccess,onFailed,userContext) {SportsInsights.SportsInsightsWS._staticInstance.GetChanges(PageName,onSuccess,onFailed,userContext); }
SportsInsights.SportsInsightsWS.GetPopups= function(PageName,onSuccess,onFailed,userContext) {SportsInsights.SportsInsightsWS._staticInstance.GetPopups(PageName,onSuccess,onFailed,userContext); }
