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