// Lightbox JS - Jono Battle

function showTagBox (id) {

    document.getElementById(id).style.visibility = 'visible';

}

function hideTagBox (id) {

    document.getElementById(id).style.visibility = 'hidden';

}

