// show and hide div
function show_div(div_id) {

    // show the requested div
    document.getElementById(div_id).style.display = 'block';
}

function hide_div(div_id) {

    // show the requested div
    document.getElementById(div_id).style.display = 'none';
}