function bookmark(url,titel){
	
	if(navigator.appName == "Microsoft Internet Explorer"){
		window.external.AddFavorite(url,titel);
	}else{
		alert("Möchten Sie "+titel+" zur Ihren Favoriten zufügen");
        window.sidebar.addPanel( titel, url, "");
	}
}
function goThere(sel){
	var linkList=sel.selectedIndex;
	if(!linkList==""){location.href=sel.options[linkList].value;return true;}
	return false;
	}

function goToNewWindow(sel){
	var linkList=sel.selectedIndex;
	if(!linkList==""){window.open(sel.options[linkList].value);}
	return false;
	}

