/* Fuegt Such-Drop-Down für O-Bus-Städtedirektwahl ein | Stand: 15.02.2004 */
/*                                                                   */

 function Go_OCity(x)
   {
     if(x == "nothing")
      { }
      else
      {
        location.href = x
      }
   }
function put_obus_city_selector(path_to_tram)
{
    with(document)
    {
     writeln("<table BORDER=0>");

     writeln("<tr><td>");
     writeln("<form action=\"\">");
     writeln("<select name=\"ObusStadtauswahl\" size=\"1\"");
     writeln("onChange=");
     writeln("\"Go_OCity(this.form.ObusStadtauswahl.options[this.form.ObusStadtauswahl.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 O-Bus-Systeme / Other Trolley Bus Systems -");

     writeln("<option value="+path_to_tram+"obus/index.htm>");
     writeln("Übersicht / Overview");

     writeln("<option value="+path_to_tram+"europ_sw/niederlande/arnheim/obus.htm>");
     writeln("Arnheim (NL)");

     writeln("<option value="+path_to_tram+"europ_ne/norwegen/bergen/obus.php>");
     writeln("Bergen (N)");

     writeln("<option value="+path_to_tram+"europ_sw/italien/bologna/index.php>");
     writeln("Bologna (I)");

     writeln("<option value="+path_to_tram+"europ_ne/slowakei/bratislava/obus.php>");
     writeln("Bratislava (SK)");

     writeln("<option value="+path_to_tram+"europ_ne/ungarn/budapest/obus.php>");
     writeln("Budapest (HU)");

     writeln("<option value="+path_to_tram+"germany/eberswalde/index.php>");
     writeln("Eberswalde (D)");

     writeln("<option value="+path_to_tram+"europ_sw/schweiz/genf/obus.php>");
     writeln("Genf/Geneva (CH)");

     writeln("<option value="+path_to_tram+"europ_sw/belgien/gent/obus.htm>");
     writeln("Gent/Ghent (B)");

     writeln("<option value="+path_to_tram+"europ_sw/oesterreich/innsbruck/obus.htm>");
     writeln("Innsbruck (A)");

     writeln("<option value="+path_to_tram+"europ_sw/italien/rom/obus.php>");
     writeln("Rom / Roma (I)");

     writeln("<option value="+path_to_tram+"europ_sw/oesterreich/salzburg/index.htm>");
     writeln("Salzburg (A)");

     writeln("<option value="+path_to_tram+"california/sf/muni/obus.htm>");
     writeln("San Francisco (USA)");

     writeln("<option value="+path_to_tram+"germany/solingen/index.htm>");
     writeln("Solingen (D)");

     writeln("<option value="+path_to_tram+"europ_ne/estland/tallinn/obus.php>");
     writeln("Tallinn (EST)");

     writeln("</select></form>");
     writeln("</td></tr>");
     writeln("</table>");
    } /* with */
} /* put_obus_city_selector */
