﻿function echo_favorites() {		// alle Browser außer Firefox!
	if (document.all && !window.opera) {
		document.write('<a href="javascript:window.external.AddFavorite(window.location.href, document.title);" title="zu den Favoriten hinzufügen"><span>zu Favoriten hinzufügen</span></a>');
	}
	else if (window.opera) {
		document.write('<a href="' + window.location.href +'" rel="sidebar" title="' + document.title + '"><span>Lesezeichen hinzufügen</span></a>');
	} else {
		document.write('<a href="javascript:firefox_favorites(\'block\')" title="Lesezeichen hinzufügen"><span>Lesezeichen hinzufügen</span></a> <strong id="Lesezeichen" style="display:none;">Ziehen Sie den Herder-Kopf in Ihre Lesezeichenleiste:<p class="block"><a href="' + document.location.href + '" title="' + document.title + '"><img src="favicon.ico" alt="' + document.title + '" title="' + document.title + '" /></a></p><a href="javascript:firefox_favorites(\'none\');" title="Hinweis ausblenden" class="Exit">Hinweis ausblenden</a></strong>')
	}
}

function firefox_favorites(visibility) {
	var prop = document.getElementById('Lesezeichen');
	if (prop.style.display == 'none') {
		prop.style.display=visibility;
	} else {
		prop.style.display='none'; }
}
