// This are the Javascript utility files to toggle the "Read More" sections
// and some menus.
function toggleLink(idElement)
{
	var style = document.getElementById(idElement).style;
	
	// switch between showing and hiding different DIV elements of the page.
	style.display = (style.display == "block") ? "none" : "block";
}

