// Texte auf- bzw. zuklappen function swap_text_event(id) { var i = 'i_' + id; var i_icon = 'i_icon' + id; var i_url = 'i_url_' + id; displayType = ( document.getElementById(i).style.display == 'none' ) ? 'block' : 'none'; if(displayType == 'block') { document.getElementById(i).style.display = 'block'; document.getElementById(i_icon).src='/img/icons/up_small.gif'; document.getElementById(i_url).style.display = 'block'; } else { document.getElementById(i).style.display='none'; document.getElementById(i_icon).src='/img/icons/down_small.gif'; document.getElementById(i_url).style.display='none'; } } function swap_text(id) { var i = 'i_' + id; var i_icon = 'i_icon' + id; displayType = ( document.getElementById(i).style.display == 'none' ) ? 'block' : 'none'; if(displayType == 'block') { document.getElementById(i).style.display = 'block'; document.getElementById(i_icon).src='/img/icons/up_small.gif'; } else { document.getElementById(i).style.display='none'; document.getElementById(i_icon).src='/img/icons/down_small.gif'; } } // =========================== function popupimg(page) { OpenWin = this.open(page,"NeuWulmstorf","width=600,height=600,scrollbars=1,resizable=1"); OpenWin.focus(); } function popupnews(page, x, y) { var x = (x > 0) ? x : 650; OpenWin = window.open(page,"NeuWulmstorf","width="+x+",height=450,left=120,scrollbars=1,resizable=1"); OpenWin.focus(); } function popupimgintern(page) { OpenWin = this.open(page,"NeuWulmstorf","width=600,height=600,scrollbars=1,resizable=1"); } function popup(page) { OpenWin = this.open(page,"nwu","width=350,height=300,scrollbars=0,resizable=1"); } function popup2(page) { OpenWin = this.open(page,"nwu","width=600,height=400,scrollbars=1,resizable=1"); }