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