function showHide(div, tf) {
        (tf == true) ? displayValue = "block" : displayValue = "none";
        document.getElementById(div).style.display = displayValue;
}