
//Routine that shows one section of a document.
function showSection(showSect)
{
	document.getElementById(showSect).style.display = "block";
}

//Routine that hides one section of a document.
function hideSection(hideSect)
{
	document.getElementById(hideSect).style.display = "none";
}
