function show_info(id) {
document.getElementById(id).style.visibility = "visible";
}

function hide_info(id) {
document.getElementById(id).style.visibility = "hidden";
}
