/* Fuegt Such-Drop-Down für Schamlspurdampfzüge-Direktwahl ein | Stand: 12.06.2006 */
/*                                                                   */

 function Go_SteamCity(x)
   {
     if(x == "nothing")
      { }
      else
      {
        location.href = x
      }
   }
function put_dampfzug_city_selector(path_to_tram)
{
    with(document)
    {
     writeln("<table BORDER=0>");

     writeln("<tr><td>");
     writeln("<form action=\"\">");
     writeln("<select name=\"SteamStadtauswahl\" size=\"1\"");
     writeln("onChange=");
     writeln("\"Go_SteamCity(this.form.SteamStadtauswahl.options[this.form.SteamStadtauswahl.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=\"nothing\">-Andere Dampfzüge / Other Steam Trains -");

     writeln("<option value="+path_to_tram+"schmalspurdampf/index.htm>");
     writeln("Übersicht/Overview");

     writeln("<option value="+path_to_tram+"europ_sw/oesterreich/achenseebahn/index.htm>");
     writeln("Achenseebahn (A)");

     writeln("<option value="+path_to_tram+"germany/chiemsee/index.htm>");
     writeln("Chiemseebahn (D)");

     writeln("<option value="+path_to_tram+"germany/fichtelberg/index.php>");
     writeln("Fichtelbergbahn (D)");

     writeln("<option value="+path_to_tram+"germany/hsb/index.htm>");
     writeln("Harzer Schmalspurbahnen (D)");

     writeln("<option value="+path_to_tram+"germany/radebeul/index.htm>");
     writeln("Lönitzgrundbahn Radebeul-Moritzburg-Radeberg(D)");

     writeln("<option value="+path_to_tram+"germany/baddoberan/index.php>");
     writeln("Mecklenburger Bäderbahn 'Molli' (D)");

     writeln("<option value="+path_to_tram+"europ_sw/oesterreich/pinzgaubahn/index.php>");
     writeln("Pinzgaubahn (A)");

     writeln("<option value="+path_to_tram+"germany/putbus/index.htm>");
     writeln("Rügensche Kleinbahn 'Der rasende Roland' (D)");

     writeln("<option value="+path_to_tram+"europ_sw/oesterreich/schafbergbahn/index.php>");
     writeln("Schafbergbahn (A)");

     writeln("<option value="+path_to_tram+"europ_sw/oesterreich/zillertalbahn/index.htm>");
     writeln("Zillertalbahn (A)");

     writeln("<option value="+path_to_tram+"germany/zittau/index.php>");
     writeln("Schmalspurbahn Zittau (D)");

     writeln("</select></form>");
     writeln("</td></tr>");
     writeln("</table>");
    } /* with */
} /* put_dampfzug_city_selector */
