/**
* SUPPORT REPORTS
*/

var Reports = {

	handleEvent: function(event) {
		var element = Event.element(event);
		var reportID = Names.removeIDScopePrefix(element.id);
		if (reportID.startsWith('casa_')) {
			CasaService.reports(reportID);
		} else {
			Service.reports(reportID);
		}
	}



}



