// JavaScript Document
function abblenden () {
  document.getElementById("abblenden").style.display = 'block';
}

function aufblenden () {
  document.getElementById("abblenden").style.display = 'none';
}
