function schaltan(id) {
document.getElementById(id).style.display = 'block';
}
function schaltaus(id) {
document.getElementById(id).style.display = 'none';
}
