// Verlinkungsrahmen ausblenden

function init(){
if(document.all){
klar = new Function('','this.blur();');
for(i=0;i<document.links.length;i++)
document.links[i].onfocus = klar;
}
}

// Klappmenü

function valve (id) {
if (document.getElementById("txt" + id).style.display == 'none') {
document.getElementById("txt" + id).style.display = "block";
document.getElementById("pic" + id).src = "pix/div/minus.gif"; 
}
else {
document.getElementById("txt" + id).style.display = "none";
document.getElementById("pic" + id).src = "pix/div/plus.gif";} 
}

// POPUP-Fenster für Newsletterarchiv

function newsletter(seite,name,breite,hoehe){
breite='900';
hoehe='600';
vonlinks = (screen.width-breite)/2;
vonoben = (screen.height-hoehe)/2;
agentur=window.open(seite,name, 'width='+breite+',height='+hoehe+',left='+vonlinks+',top='+vonoben+',location=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no');
name.focus();
}