function Go (select) {
  	var wert = select.options[select.options.selectedIndex].value;
	if (wert != '') {
		var MyClass = select.options[select.options.selectedIndex].className;
		
		if (MyClass == "externer_wichitgster_link") {
			//Fenster1 = window.open(wert, "Zweitfenster");
			//Fenster1.focus();
			document.wichtigeLinks.target = '_blank';
			document.wichtigeLinks.action = wert;
		//document.quicklinks=null;
		document.wichtigeLinks.submit();
		
		}
		else {
			document.location.href = wert;
			
		}
	}
}

