
function addToBookmark(bmurl, bmtitle){

    if( navigator.userAgent.indexOf('MSIE') >= 0 && navigator.userAgent.indexOf('Opera') < 0 ){

       window.external.AddFavorite(bmurl, bmtitle);
		 
   }   else if( window.sidebar && window.sidebar.addPanel ) {

	 	 window.sidebar.addPanel( bmtitle, bmurl, '' );

   } else {

		//other browsers - tell them to add a bookmark (adds current page, not target page)
		window.alert( 'Bitte benutzen Sie die Favoriten hinzufügen Funktion ihres Browsers.' );

	}
}

