/* --------------------------------------------------------------------------------------
 * FUNCTION addToFavorites()
 * --------------------------------------------------------------------------------------
 * Sets a new bookmark.
 * Author: re-lounge, http://www.re-lounge.com
 */
function addToFavorites(title,href) {
	// Get-Variable entfernen
	if (href.indexOf("?")>=0)
		href = href.substring(0,href.indexOf("?"));
	if (document.all) {
		window.external.AddFavorite(href,title);
	} else if (window.sidebar && window.sidebar.addPanel) {
		return true;
	} else if( window.opera && window.print ) {
		return true;
	} else {
		return false;
	}
	return false;
}