/* Functions for use throughout the website */

function show(myId)
{
	document.getElementById(myId).style.display = 'inline';
}

function hide(myId)
{
	document.getElementById(myId).style.display = 'none';
}