// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
function showModalControl() {
	Element.show('innermodalcontrol');
	Element.show('modalcontrol')
}

function hideModalControl() {
	Element.hide('innermodalcontrol');
	Element.hide('modalcontrol')
}

function showDetail(detailID, viewerID) {
	var viewer = document.getElementById(viewerID);
	var detail = document.getElementById(detailID);
	
	viewer.innerHTML = detail.innerHTML;
}
