﻿var activeSection = "x";

function toggleSection(section) {
	var obj=document.getElementById(section);
	if(obj.style.display != "block"){
		obj.style.display = "block" }
	else {
		obj.style.display = "none" }
}