function hidePopup(elID) {
    var el = document.getElementById(elID);
    
    el.style.display = "none";
}
