function schreibe_Lesezeichen() {
	if(window.external) {
		with(document) {
			open("text/html");
			write("<A HREF=\"javascript:window.external.AddFavorite(\'http://www.leichte.info/\', \'Leichte.info\')\" title=\"Klicken Sie hier um die Startseite von www.Leichte.info Ihren Lesezeichen hinzuzuf&uuml;gen.\">Bookmark Startseite</A>");
			write(" &nbsp; &nbsp; ");
			write("<A HREF=\"javascript:window.external.AddFavorite(location.href, document.title)\" title=\"Bitte klicken Sie hier, um speziell diese Unterseite Ihren Lesezeichen hinzuzuf&uuml;gen.\">Bookmark diese Seite</A>");
			write(" &nbsp; &nbsp; ");
			write("<a href=\"mailto:?subject=Hallo%20-%20habe%20was%20Interessantes%20gefunden&amp;body=" + window.location.href + "\" title=\"Zeige deinen Freunden diese Seite (per email)\">tell a friend</a>");
			write(" &nbsp; &nbsp; ");
			close();
		}
	}
	Verlinkungs_Datei = "http://www.leichte.info/verlinken.php" ;
	Aktuelle_Url = window.location.href ;
	Aktuelle_Url = Aktuelle_Url.substr(0,127);
	Aktuelle_Url = Aktuelle_Url.replace(/&/g,":und:") ;
	Aktuelle_Url = Aktuelle_Url.replace(/\?/g,":frage:") ;
	Aktuelle_Url = Aktuelle_Url.replace(/ /g,"%20") ;
	Aktuelle_Url = Aktuelle_Url.replace(/=/g,":ist:") ;
	Aktuelle_Url = Aktuelle_Url.replace(/#/g,":raute:") ;
	Titel = document.title ;
	Titel = Titel.substr(0,127);
	Titel = Titel.replace(/'/g," ") ;
	Titel = Titel.replace(/"/g," ") ;
	Titel_x = Titel.replace(/&/g,":und:") ;
	Titel_x = Titel_x.replace(/\?/g,":frage:") ;
	Titel_x = Titel_x.replace(/ /g,"%20") ;
	Titel_x = Titel_x.replace(/=/g,":ist:") ;
	test_Url = Aktuelle_Url.substr(0,Verlinkungs_Datei.length);
	Aktuelle_Url = Verlinkungs_Datei + "?Url=" + Aktuelle_Url + "&Titel=" + Titel_x ;
	if (Aktuelle_Url.match(/["']/g)) { Aktuelle_Url = Verlinkungs_Datei ; }
	//	alert(Aktuelle_Url+" \n"+test_Url);
	if (test_Url!=Verlinkungs_Datei) {
		with(document) {
			open("text/html");
			write("<A HREF=\"" + Aktuelle_Url + "\"  title=\"Bitte klicken Sie hier um diese Seite zu verlinken. (" + Titel + ")\">verlinken</A>");
			write(" &nbsp; &nbsp; ");
			close();
		}
	}
}