// <!--
function oeffnefenster (url) {
    fenster = window.open(url, "fenster1", "width=325,height=250,status=yes,scrollbars=yes,resizable=yes");
    fenster.focus();
}

// div aus oder einblenden
function blenden(id) {
    // Elemente ein- und ausblenden
    if (document.getElementById(id).style.display == 'none') {
        document.getElementById(id).style.display='block';
    } else {
        document.getElementById(id).style.display='none';
    }
}
//-->
