
function ShowHide( showId, hideId )
{
    var show = document.getElementById( showId );
    var hide = document.getElementById( hideId );
    
    show.style.display = "block";
    hide.style.display = "none";
}
