/**
* Blendet das Panel zur Auswahl der Druckversion wieder aus
*/

function closeOptions()
    {
     document.getElementsByTagName('body')[0].removeChild(document.getElementById('options'));
    }
    
    
    
function druckversion()
    {
     var div1 = document.createElement('div');
     var div2 = document.createElement('div');
     var a_close = document.createElement('a');
     var a1 = document.createElement('a');
     var a2 = document.createElement('a');
     var h2 = document.createElement('h2');
     var p = document.createElement('p');
     var strong = document.createElement('strong');
     
     
     div1.id = "options";
     div2.id = "options_text";
     h2.appendChild(document.createTextNode('Druckversion'));
     strong.appendChild(document.createTextNode('Hinweis: '));
     p.appendChild(strong);
     p.appendChild(document.createTextNode('Die Nutzung der Daten ist ausschließlich für private Zwecke zulässig!'));
     a_close.id = "options_close"; a_close.appendChild(document.createTextNode('Schließen'));
     a_close.href = 'javascript:closeOptions()';
     a1.className = "options_button"; a1.appendChild(document.createTextNode('Mit Bildern'));
     a1.href = document.URL+'&bilder=1';
     a2.className = "options_button"; a2.appendChild(document.createTextNode('Ohne Bilder'));
     a2.href = document.URL+'&bilder=0';
     
     
     div2.appendChild(a_close);
     div2.appendChild(h2);
     div2.appendChild(a1);
     div2.appendChild(a2);
     div2.appendChild(p);
     
     div1.appendChild(div2);
     
     document.getElementsByTagName('body')[0].appendChild(div1);
    }
