function einblendenSchufa(elem) {
  document.getElementById('verstecktSchufa').style.display = 'block';
  document.getElementById('einblendenSchufa').style.display = 'none';
  document.getElementById('ausblendenSchufa').style.display = 'inline';
}

function ausblendenSchufa(elem) {
  document.getElementById('verstecktSchufa').style.display = 'none';
  document.getElementById('einblendenSchufa').style.display = 'inline';
  document.getElementById('ausblendenSchufa').style.display = 'none';
}

function einblendenInfoscore(elem) {
  document.getElementById('verstecktInfoscore').style.display = 'block';
  document.getElementById('einblendenInfoscore').style.display = 'none';
  document.getElementById('ausblendenInfoscore').style.display = 'inline';
}

function ausblendenInfoscore(elem) {
  document.getElementById('verstecktInfoscore').style.display = 'none';
  document.getElementById('einblendenInfoscore').style.display = 'inline';
  document.getElementById('ausblendenInfoscore').style.display = 'none';
}

function einblendenAccumio(elem) {
  document.getElementById('verstecktAccumio').style.display = 'block';
  document.getElementById('einblendenAccumio').style.display = 'none';
  document.getElementById('ausblendenAccumio').style.display = 'inline';
}

function ausblendenAccumio(elem) {
  document.getElementById('verstecktAccumio').style.display = 'none';
  document.getElementById('einblendenAccumio').style.display = 'inline';
  document.getElementById('ausblendenAccumio').style.display = 'none';
}

