function hide(targetId) 
{
    var t = document.getElementById(targetId);
    t.className = 'hidden';
}

function show(targetId) 
{
    var t = document.getElementById(targetId);
    t.className = 'shown';
}