home *** CD-ROM | disk | FTP | other *** search
- var IE = (document.all);
- var DOM = (document.getElementById && !document.all);
-
- var f2 = document.hilfe.unter;
- var hlps = document.hilfe.haupt.options.length;
- var hlp = new Array(hlps);
-
- for (i = 0; i < hlps; i++)
- hlp[i] = new Array();
-
- hlp[0][0] = new Option('', ' ' + txt[0][5]);
- hlp[0][1] = new Option('', '=======================');
- hlp[0][2] = new Option(pfad + '/general.htm', ' ╗ ' + txt[0][37]);
- hlp[0][3] = new Option(pfad + '/ipaddresses.htm', ' ╗ ' + txt[0][6]);
- hlp[0][4] = new Option(pfad + '/ports.htm', ' ╗ ' + txt[0][7]);
- hlp[0][5] = new Option(pfad + '/rasparameters.htm', ' ╗ ' + txt[0][8]);
- hlp[0][6] = new Option(pfad + '/extragate.htm', ' ╗ ' + txt[0][9]);
- hlp[0][7] = new Option(pfad + '/logfiles.htm', ' ╗ ' + txt[0][10]);
- hlp[0][8] = new Option(pfad + '/benutzer.htm', ' ╗ ' + txt[0][11]);
- hlp[0][9] = new Option('', '');
-
- hlp[1][0] = new Option('', ' ' + txt[0][12]);
- hlp[1][1] = new Option('', '=======================');
- hlp[1][2] = new Option(pfad + '/proxy.htm', ' ╗ ' + txt[0][13]);
- hlp[1][3] = new Option(pfad + '/http.htm', ' ╗ ' + txt[0][14]);
- hlp[1][4] = new Option(pfad + '/ftp.htm', ' ╗ ' + txt[0][15]);
- hlp[1][5] = new Option(pfad + '/news.htm', ' ╗ ' + txt[0][16]);
- hlp[1][6] = new Option(pfad + '/sntp.htm', ' ╗ ' + txt[0][17]);
- hlp[1][7] = new Option(pfad + '/dns.htm', ' ╗ ' + txt[0][18]);
- hlp[1][8] = new Option(pfad + '/mimetypes.htm', ' ╗ ' + txt[0][19]);
- hlp[1][9] = new Option('', '');
-
- hlp[2][0] = new Option('', ' ' + txt[0][20]);
- hlp[2][1] = new Option('', '=======================');
- hlp[2][2] = new Option(pfad + '/general_email.htm', ' ╗ ' + txt[0][37]);
- hlp[2][3] = new Option(pfad + '/pop3servers.htm', ' ╗ ' + txt[0][21]);
- hlp[2][4] = new Option(pfad + '/smtpservers.htm', ' ╗ ' + txt[0][22]);
- hlp[2][5] = new Option(pfad + '/users.htm', ' ╗ ' + txt[0][23]);
- hlp[2][6] = new Option(pfad + '/groups.htm', ' ╗ ' + txt[0][24]);
- hlp[2][7] = new Option(pfad + '/distribution.htm', ' ╗ ' + txt[0][25]);
- hlp[2][8] = new Option(pfad + '/rerouting.htm', ' ╗ ' + txt[0][26]);
- hlp[2][9] = new Option(pfad + '/bccsend.htm', ' ╗ ' + txt[0][27]);
- hlp[2][10] = new Option(pfad + '/bccreceive.htm', ' ╗ ' + txt[0][28]);
- hlp[2][11] = new Option(pfad + '/alias.htm', ' ╗ ' + txt[0][29]);
- hlp[2][12] = new Option('', '');
-
- hlp[3][0] = new Option('', ' ' + txt[0][30]);
- hlp[3][1] = new Option('', '=======================');
- hlp[3][2] = new Option(pfad + '/intro.htm', ' ╗ .htaccess - ' + txt[0][31]);
- hlp[3][3] = new Option(pfad + '/inhalt.htm', ' ╗ .htaccess - ' + txt[0][32]);
- hlp[3][4] = new Option('', '');
-
- hlp[4][0] = new Option('', ' ' + txt[0][33]);
- hlp[4][1] = new Option('', '=======================');
- hlp[4][2] = new Option(pfad + '/applets.htm', ' ╗ ' + txt[0][34]);
- hlp[4][3] = new Option('', '');
-
- /**/
-
- function redi(x)
- {
- for (m = f2.options.length - 1; m > 0; m--)
- f2.options[m] = null;
-
- for (i = 0; i < hlp[x].length; i++)
- f2.options[i] = new Option(hlp[x][i].value, hlp[x][i].text);
- }
-
- /**/
-
- function surf(form)
- {
- var sel = f2.selectedIndex;
-
- if (f2.options[sel].value != '')
- parent.helphaupt.location.replace(f2.options[sel].value);
- }
-
- /**/
-
- function menue(a, b)
- {
- document.hilfe.haupt.options[a].selected = true;
- redi(a);
- document.hilfe.unter.options[b].selected = true;
- farb();
- }
-
- /**/
-
- function farb()
- {
- if (IE)
- {
- document.all.hilfe.unter.tags('option')[0].style.color = akt;
- document.all.hilfe.unter.tags('option')[1].style.color = akt;
- }
-
- if (DOM || IE)
- {
- document.hilfe.unter.getElementsByTagName('option')[0].style.color = akt;
- document.hilfe.unter.getElementsByTagName('option')[1].style.color = akt;
- }
- }