if (typeof Microsite != "function") { function Microsite() { this.id = null; this.serviceTitle = null; this.name = null; this.tvKey = null; this.active = false; this.account = false; this.parentService = false; this.live = false; } } // 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 (micrositeDao == null) var micrositeDao = {}; micrositeDao._path = '/site/dwr'; micrositeDao.getAll = function(callback) { dwr.engine._execute(micrositeDao._path, 'micrositeDao', 'getAll', callback); } micrositeDao.findWithServiceTitleContaining = function(p0, callback) { dwr.engine._execute(micrositeDao._path, 'micrositeDao', 'findWithServiceTitleContaining', p0, callback); }