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