// -------------------- Show/Hide Info -------------------- //

function showInfo(id){
 if(document.getElementById(id)) document.getElementById(id).style.display = "block";
}

function hideInfo(id){
 if(document.getElementById(id)) document.getElementById(id).style.display = "none";
}

