// JavaScript Document

function empfehlen()
{
		var url = location.href;
		mail_str = "mailto:?subject= Friseur-Innung Mannheim";
		mail_str += "&body=Habe etwas gefunden was Dich interessieren könnte: " + document.title;
		mail_str += ". Die Adresse ist: " + url; 
	
		location.href = mail_str;

}

function addbookmark() {
		bookmarkurl=self.location.href;
		bookmarktitle=document.title;
		if (document.all) {
			window.external.AddFavorite(bookmarkurl,bookmarktitle)
		} else alert("Bitte bei Netscape STRG + D drücken"); 
	
}