﻿function ToggleGlossary(Topic) {
	if (document.getElementById("div" + Topic + "Glossary").style.display == "block")
		document.getElementById("div" + Topic + "Glossary").style.display = "none";
	else
		document.getElementById("div" + Topic + "Glossary").style.display = "block";

	if (document.getElementById("divGlossaryContainer").style.display == "block")
		document.getElementById("divGlossaryContainer").style.display = "none";
	else
		document.getElementById("divGlossaryContainer").style.display = "block";
}

function NextProtectionGlossary(TopicNumber) {
	document.getElementById("hypProtection1").className = "";
	document.getElementById("hypProtection2").className = "";
	document.getElementById("hypProtection3").className = "";
	document.getElementById("hypProtection4").className = "";
	document.getElementById("hypProtection5").className = "";
	document.getElementById("hypProtection6").className = "";

	document.getElementById("divProtection1").style.display = "none";
	document.getElementById("divProtection2").style.display = "none";
	document.getElementById("divProtection3").style.display = "none";
	document.getElementById("divProtection4").style.display = "none";
	document.getElementById("divProtection5").style.display = "none";
	document.getElementById("divProtection6").style.display = "none";

	document.getElementById("hypProtection" + TopicNumber).className = "NextLink";
	document.getElementById("divProtection" + TopicNumber).style.display = "block";
}

function NextMinimumContributionsGlossary(TopicNumber) {
	document.getElementById("hypMinimumContributions1").className = "";
	document.getElementById("hypMinimumContributions2").className = "";
	document.getElementById("hypMinimumContributions3").className = "";
	document.getElementById("hypMinimumContributions4").className = "";
	document.getElementById("hypMinimumContributions5").className = "";

	document.getElementById("divMinimumContributions1").style.display = "none";
	document.getElementById("divMinimumContributions2").style.display = "none";
	document.getElementById("divMinimumContributions3").style.display = "none";
	document.getElementById("divMinimumContributions4").style.display = "none";
	document.getElementById("divMinimumContributions5").style.display = "none";

	document.getElementById("hypMinimumContributions" + TopicNumber).className = "NextLink";
	document.getElementById("divMinimumContributions" + TopicNumber).style.display = "block";
}