var WS_Vote=function() {
WS_Vote.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WS_Vote.prototype={
Vote:function(touserID,succeededCallback, failedCallback, userContext) {
return this._invoke(WS_Vote.get_path(), 'Vote',false,{touserID:touserID},succeededCallback,failedCallback,userContext); }}
WS_Vote.registerClass('WS_Vote',Sys.Net.WebServiceProxy);
WS_Vote._staticInstance = new WS_Vote();
WS_Vote.set_path = function(value) { WS_Vote._staticInstance._path = value; }
WS_Vote.get_path = function() { return WS_Vote._staticInstance._path; }
WS_Vote.set_timeout = function(value) { WS_Vote._staticInstance._timeout = value; }
WS_Vote.get_timeout = function() { return WS_Vote._staticInstance._timeout; }
WS_Vote.set_defaultUserContext = function(value) { WS_Vote._staticInstance._userContext = value; }
WS_Vote.get_defaultUserContext = function() { return WS_Vote._staticInstance._userContext; }
WS_Vote.set_defaultSucceededCallback = function(value) { WS_Vote._staticInstance._succeeded = value; }
WS_Vote.get_defaultSucceededCallback = function() { return WS_Vote._staticInstance._succeeded; }
WS_Vote.set_defaultFailedCallback = function(value) { WS_Vote._staticInstance._failed = value; }
WS_Vote.get_defaultFailedCallback = function() { return WS_Vote._staticInstance._failed; }
WS_Vote.set_path("/AjaxService/WS_Vote.asmx");
WS_Vote.Vote= function(touserID,onSuccess,onFailed,userContext) {WS_Vote._staticInstance.Vote(touserID,onSuccess,onFailed,userContext); }
