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;
	}
function popup(p,n,w,h) {
		popupWin = window.open(p,n,"width="+ w +",height="+ h +",top=140,left=170,directories=no,hotkeys=no,title=no,location=no,menubar=no,resizable=no,scrolling=auto,status=no,titlebar=true,toolbar=no");
		}