function showHideBlock( theBlock ) {
	targetElement = document.getElementById( theBlock );
	if ( targetElement.className == "hide" ) {
		targetElement.className = "";
	} 
	else {
		targetElement.className = "hide";
	}
}

