function get_visibility(id)
{
    visibility = ( document.getElementById(id).style.display == 'none' ) ? 0 : 1;

    return visibility;
}

function set_visibility(id, value)
{
    visibility = (value == 1) ? '' : 'none';
    document.getElementById(id).style.display = visibility;
    
    return;
}
