﻿function ShowHideSections(hideSection, showSection) {
    objHide = document.getElementById(hideSection);
    objShow = document.getElementById(showSection);

    objHide.style.display = "none";
    objShow.style.display = "";
}
