X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/6c7e41458d2027f72901d16417a37648942f7445..53593baa211863fbf66540cf1bcc36c8fb37257f:/js/switchmenuframe.js diff --git a/js/switchmenuframe.js b/js/switchmenuframe.js deleted file mode 100644 index 0399a2ebe..000000000 --- a/js/switchmenuframe.js +++ /dev/null @@ -1,20 +0,0 @@ -/* This is used in bin/mozilla/kopf.pl to switch the HTML sidemenu on/off - 2010, Sven Donath, lxo@dexo.de */ - -var vSwitch_Menu = 1; - -function Switch_Menu(framesize) -{ - if (vSwitch_Menu) - { - vSwitch_Menu=false; - parent.document.getElementById('menuframe').setAttribute('cols','30,*') - } - else - { - vSwitch_Menu=true; - framesize = framesize + ',*'; - parent.document.getElementById('menuframe').setAttribute('cols',framesize); - } - return; -}