/* Fuegt Such-Drop-Down für Seitendirektwahl ein | Stand: 29.09.2002 */
/*                                                                   */

 function Go(x)
   {
     if(x == "nothing")
      { }
      else
      {
        location.href = x
      }
   }
function select_brandenburg_page()
{
    with(document)
    {
     writeln("<table BORDER=0>");

     writeln("<tr><td>");
     writeln("<form action=\"\">");
     writeln("<select name=\"brandenburgseitenauswahl\" size=\"3\"");
     writeln("onChange=");
writeln("\"Go(this.form.brandenburgseitenauswahl.options[this.form.brandenburgseitenauswahl.options.selectedIndex].value)\" ");

/*  (* Das gibt leider häufig Probleme mit Netscape 4.78, Schade! *)
writeln("style=\"width:300px; background-color:#FFFFE0; font-size:9pt; font-family:Arial,sans-serif;\" ");
*/
     writeln(">");

     writeln("<option value=index.htm>");
     writeln("Übersichtsseite");

     writeln("<option value=kt4.php>");
     writeln("Kurzgelenktriebwagen Tatra KT4");

     writeln("<option value=ktnf6.php>");
     writeln("KTNF6 (KT4 mit Niederflurmittelteil)");

     writeln("<option value=nfmgt6d.php>");
     writeln("Niederflurtriebwagen NFMGT6D");

     writeln("<option value=g4.php>");
     writeln("Gelenktriebwagen G4");

     writeln("<option value=tw42.php>");
     writeln("Historischer TW 42");

     writeln("<option value=historisch.php>");
     writeln("Historische Triebwagen");

     writeln("<option value=plaue.php>");
     writeln("Plaue und Kirchmöser");

     writeln("</select></form>");
     writeln("</td></tr>");
     writeln("</table>");
    } /* with */
} /* select_brandenburg_page */
