function switchDiv(divId) {
divSection = document.getElementById(divId);
if(divSection.style.display=="none") divSection.style.display = "block";
else divSection.style.display = "none";
}

