navi=new Array();
navi["Bitte w&auml;hlen Sie"]="#";
navi["Home/Stadtwahl"]="/index.html";
navi["Stadtmagazin"]="/index.html";
navi["&nbsp;&nbsp;&nbsp;Witten"]="/witten/aktuelle_ausgabe.html";
navi["&nbsp;&nbsp;&nbsp;Castrop-Rauxel/Waltrop"]="/castrop/aktuelle_ausgabe.html";
navi["&nbsp;&nbsp;&nbsp;L&uuml;nen"]="/luenen/aktuelle_ausgabe.html";
navi["Impressum"]="/impressum.html";
navi["Kontakt"]="/kontakt.html";

function NavigationsPulldown() {
	document.open();
	document.writeln("<select name=\"Wohin\" onChange=\"GeheZu()\" size=1 style=\"font-family:Tahoma,Verdana,Arial,Helvetica;font-size:8pt\">");
	for (i in navi) {
		document.writeln("<option value=\""+navi[i]+"\">"+i+"</option>");
	}
	document.writeln("</select>");
	document.close();
}

function GeheZu() {
	Seite=document.Pulldown.Wohin.options[document.Pulldown.Wohin.selectedIndex].value;
	if (Seite!="#") { location.href="http://"+location.host+Seite; }
}
