function switcher(elementId){
	var element = document.getElementById(elementId);
	if (element != null){
		var myIndex  = element.selectedIndex;
		var selValue = element.options[myIndex].value;
		if (selValue != "")
			document.location.href = selValue;
	}
}

function addToFavorites(bookmarkurl,bookmarktitel){
	if (bookmarkurl == null){
		var bookmarkurl = document.location.href;
	}
	if (bookmarktitel == null){
		var bookmarktitel = document.title;
	}
	if (window.sidebar) {
	  // Mozilla Firefox Bookmark
	  window.sidebar.addPanel(bookmarktitel, bookmarkurl,"");
	} else if( window.external ) {
	  // IE Favorite
	  window.external.AddFavorite( bookmarkurl, bookmarktitel);
	}
}