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

