// $model is a special variable that has access to the TableViewRow element

function onClick(e) {
	var detailWindow = Alloy.createController("detail", {
		model: $model
	}).getView();

	// Alloy.Globals.homeTab is set in index.js to the Tab opened
	Alloy.Globals.tabGroup.activeTab.open(detailWindow, {animated: true});
}