// JavaScript Document

// Show/Hide
function showhide(targetId, targetId2) {
    target = document.getElementById(targetId);
    target2 = document.getElementById(targetId2);

    if (target.style.display == "none") { target.style.display = "block"; }
    else if (target.style.display == "block") { target.style.display = "none"; }
    else { target.style.display = "none"; }

    if (target2.style.display == "none") { target2.style.display = "block"; }
    else if (target2.style.display == "block") { target2.style.display = "none"; }
    else { target2.style.display = "none"; }

}