
function toggle_imprint() {
         var state = document.getElementById('imprint').style.display;
         var new_state = 'block';
         if ( state == 'block' ) {
                new_state = 'none';
         }
         document.getElementById('imprint').style.display = new_state;
}

