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

