                     <!--
                      function show(thebox) {
                       if(document.getElementById(thebox).style.display == "none"){
                        document.getElementById(thebox).style.display = "block";
                       }
                       else {
                        document.getElementById(thebox).style.display = "none";
                       }
                      }
                      function closeall(lastid) {
                       var id = 1;
                       while (lastid >= id) {
                        document.getElementById(id).style.display = "none";
                        id++;
                       }
                      }
                      function openall(lastid) {
                       var id = 1;
                       while (lastid >= id) {
                        document.getElementById(id).style.display = "block";
                        id++;
                       }
                      }
                      function popup(popuplink) {
                       HelpFenster = window.open(popuplink,'HilfeFenster','width=300,height=500,location=no,status=no,scrollbars=yes');
                      }
                      
                      function previewwindow() {
                       document.getElementsByName("madminop")[0].value = 'preview';
                       document.autoform.target = 'VorschauFenster';
                      }
                      function nopreviewwindow() {
                       document.getElementsByName("madminop")[0].value = 'SaveContent';
                       document.autoform.target = '';
                      }
                     //-->
