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