<!--
function ShowPanel (sPanel) {
	var aPanel = document.getElementById(sPanel);
	var aPA_Index = document.getElementById('Practice_Areas');

	if (sPanel == 'Aviation_Cases') {
		// hide the top Aviation Panel
		var aAS_Panel = document.getElementById('Aviation');
		aAS_Panel.style.visibility = "";
		aAS_Panel.style.display = "none";
	}
	else if (sPanel == 'Cases_from_Menu') {
		// hide the Index
		aPA_Index.style.visibility = "";
		aPA_Index.style.display = "none";
		var aPanel = document.getElementById('Aviation_Cases');
	}
	else {
		// hide the Index
		aPA_Index.style.visibility = "";
		aPA_Index.style.display = "none";
	}

	// show the selected panel/section
	window.location.href = "#top_of_page"
	aPanel.style.visibility = "visible";
	aPanel.style.display = "block";	
}

function HidePanel (sPanel) {
	var aPanel = document.getElementById(sPanel);
	var aPA_Index = document.getElementById('Practice_Areas');

	// hide the selected panel/section
	aPanel.style.visibility = "";
	aPanel.style.display = "none";

	// show the Index
	window.location.href = "#top_of_page"
	aPA_Index.style.visibility = "visible";
	aPA_Index.style.display = "block";

}

function blockError(){return true;}
window.onerror = blockError;
// -->