function show_it(sid)
{
    var txt = document.getElementById(sid);
    if(txt.style.display == 'none')
    {
        txt.style.display = 'block';
    }
    else
    {
        txt.style.display = 'none';
    }
}