function addbookmark() {
	if (document.all) {
		// alert(document.title);
		window.external.AddFavorite(document.URL, document.title);
	} else {
		alert("Strg-D druecken zum Bookmark setzen.");
	}
}