// Texte auf- bzw. zuklappen 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,"imggallery","width=600,height=500,scrollbars=1,resizable=1"); } function popup(page) { OpenWin = this.open(page,"agb","width=750,height=450,scrollbars=1,resizable=1"); } function popuphelp(page) { OpenWin = this.open(page,"imgcoord","width=350,height=250,scrollbars=1,resizable=1"); } function popupgame(page,width,height) { OpenWin = this.open(page,"imgcoord","width="+width+",height="+height+",scrollbars=1,resizable=1"); } // Für Bildmenu function Bildwechsel2(name,Bildobjekt) { window.document.images[name].src = Bildobjekt; window.document.sound.play(); }