﻿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" }
}

function openSection(section) {
	var obj=document.getElementById(section);
	obj.style.display = "block";
}
