with(document){
     writeln('<span id="bookmark" class="bookmark">Diese Seite zu Favoriten hinzufügen</span>      ');
}    document.close();

var IE = navigator.appName.match(/(Microsoft Internet Explorer)/gi),
    NS = navigator.appName.match(/(Netscape)/gi),
    OP = navigator.appName.match(/(Opera)/gi),
    BK = document.getElementById('bookmark');
    BK.onmouseout = function(){
       window.status = '';
       return true;
    }

    if(IE && document.uniqueID){
       BK.onclick = function(){
//	      window.external.AddFavorite('http://www.christliche-linksammlung.de');
          window.external.AddFavorite('http://www.christliche-linksammlung.de',document.title);
       }
       BK.onmouseover = function(){
		  this.style.textDecoration='underline'; 
          window.status='';
          return true;
       }
	    BK.onmouseout = function(){
		  this.style.textDecoration='none'; 
          window.status='';
          return true;
       }
    }

    else if(OP || IE && !document.uniqueID){
       BK.onclick = function(){
          alert('Um Christliche-Linksammlung.de zu den Favoriten hinzuzufügen,\ndrücken Sie bitte Ctrl & T.');
       }
       BK.onmouseover = function(){
		  this.style.textDecoration='underline';
          window.status='Um Christliche-Linksammlung.de zu den Favoriten hinzuzufügen,\ndrücken Sie bitte Ctrl & T.';
          return true;
       }
	   BK.onmouseout = function(){
		  this.style.textDecoration='none'; 
          window.status='';
          return true;
       }
    }

    else if(NS){
       BK.onclick = function(){
          alert('Um Christliche-Linksammlung.de zu den Favoriten hinzuzufügen,\ndrücken Sie bitte Ctrl & D');
       }
       BK.onmouseover = function(){
		  this.style.textDecoration='underline';
          window.status='Um Christliche-Linksammlung.de zu den Favoriten hinzuzufügen,\ndrücken Sie bitte Ctrl & D';
          return true;
       }
	   BK.onmouseout = function(){
		  this.style.textDecoration='none'; 
          window.status='';
          return true;
       }
    }

    else{ BK.innerHTML = '' }