/* Anfang JavaScript Schnellauswahl */

function Go (select) {
	var wert = select.options[select.options.selectedIndex].value;
	if (wert == "leer") {
		select.form.reset();
		return;
	} else {
		window.location.href = wert;
	}
}

/* Ende JavaScript Schnellauswahl */