// JavaScript Document

  function toggleReportSection(section) {
		var header_container = document.getElementById(section + '_header');
		var body_container = document.getElementById(section + '_body');
		var img = document.getElementById(section + '_image');
		if (body_container.style.display == "none") {
			body_container.style.display = "block";
			img.src = "../images/section_expanded.gif";
		} else {
			body_container.style.display = "none";
			img.src = "../images/section_collapsed.gif";
		}
	}
