/*
showhide.js

This script enables "show/hide" links for blocks of text

*/

function toggleVisibility(currMenu, currElement)
{
	if (document.getElementById)
	{
		thisMenu = document.getElementById(currMenu).style
		thisElement = document.getElementById(currElement)

		if (thisMenu.display == "block")
		{
			thisMenu.display = "none"
			thisElement.innerHTML = "Show"
		}
		else
		{
			thisMenu.display = "block"
			thisElement.innerHTML = "Hide"
		}
	}
}