<!-- 
// seite empfehlen
function sendpage(lng)
{
var str = location.href;

// session raus
var kurz = str.replace(/\/S[^\/]+/,'')

mail_str = "mailto:?subject= Internetseite: " + document.title;
	
	if (lng =='en') {
		mail_str += "&body=Look at this site! It calls: " + document.title;
		mail_str += ". Here is the Adresse: " + kurz; 
	}
	else {
	mail_str += "&body=Schau dir diese Seite doch einmal an! Sie heißt: " + document.title;
	mail_str += ". Hier ist die Adresse: " + kurz; 
	
	}
	
location.href = mail_str;

}


//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"); 
	
}














