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