// Miscellaneous javascript library

// Html toggle (for FAQs, etc)
function Toggle(tagId) {
	var x = document.getElementById(tagId);
	if (x.style.display == 'none') x.style.display = '';
	else x.style.display = 'none';
}