// JavaScript Document

function showDiv(div_id) {

    // show the requested div
    document.getElementById(div_id).style.display = 'block';
}





