
function toggle_counties() {

    hide_and_toggle('donate_links', 'county_list');
}

function toggle_donate_links() {

    hide_and_toggle('county_list', 'donate_links');
}

function hide_and_toggle(hide_this, toggle_that) {

    var to_hide = document.getElementById(hide_this);

        if (to_hide != null) {
            // alert('Thing to hide: '+to_hide.id);
            to_hide.style.display = "none";
        }

    var links = document.getElementById(toggle_that);

    if (links.style.display == "block") {
        links.style.display = "none";
    } else {
        links.style.display = "block";
    }
}


