function hide(id)
{
    document.getElementById(id).style.display = 'none';
    document.getElementById(id).style.visibility = 'hidden';
}

function show(id)
{
    document.getElementById(id).style.display = '';
    document.getElementById(id).style.visibility = 'visible';
}

function change(id)
{
    if (document.getElementById(id).style.display == 'none')
    {
        show(id);
    }
    else
    {
        hide(id);
    }
}
