// einblenden
function showInfo (show) {
var show = document.getElementById(show);
show.style.display = "block";
}

// ausblenden
function hideInfo (hide) {
var hide = document.getElementById(hide);
hide.style.display = "none";
}
