Cookie-Richtlinie
if (!localStorage.getItem('cookie-consent')) {
document.getElementById('crew-cookie-banner').style.display = 'block';
}
function setConsent(choice) {
localStorage.setItem('cookie-consent', choice ? 'all' : 'min');
document.getElementById('crew-cookie-banner').style.display = 'none';
if(choice) location.reload();
}