// Provide a default path to dwr.engine if (dwr == null) var dwr = {}; if (dwr.engine == null) dwr.engine = {}; if (DWREngine == null) var DWREngine = dwr.engine; if (MusicService == null) var MusicService = {}; MusicService._path = '/dwr'; MusicService.getContent = function(p0, callback) { dwr.engine._execute(MusicService._path, 'MusicService', 'getContent', p0, callback); } MusicService.loadBonamassa = function(callback) { dwr.engine._execute(MusicService._path, 'MusicService', 'loadBonamassa', callback); } MusicService.loadHearItNow = function(callback) { dwr.engine._execute(MusicService._path, 'MusicService', 'loadHearItNow', callback); } MusicService.loadSlideshow = function(p0, callback) { dwr.engine._execute(MusicService._path, 'MusicService', 'loadSlideshow', p0, callback); }