// Auswahl TeilRoute
function surfroute(form) {
var myindex=form.select1.selectedIndex
if (form.select1.options[myindex].value != "0") {
location=form.select1.options[myindex].value;}
}
//Ende Auswahl TeilRoute


//bookmark setzen
	function addBookmark()
	{
		bookmarkurl=self.location.href;
		bookmarktitle=document.title;
		if (document.all) {
			window.external.AddFavorite(bookmarkurl,bookmarktitle)
		} else alert("STRG + D drücken"); 
	}
//Ende bookmark setzen

// Seite empfehlen
		function sendPage()
		{
			var str = location.href;
		
			// session raus
			var kurz = str.replace(/\/S[^\/]+/,'')
		
			mail_str = "mailto:?subject= DFS: " + document.title;
			
			mail_str += "&body=Ich glaube das ist eine Internetseite die Sie sich ansehen sollten: " + document.title;
			mail_str += ". Hier ist die Adresse: " + kurz; 
			
			location.href = mail_str;
		}
// Ende Seite empfehlen