with(document){
	 writeln('<B><a class="texte_HomePage" href="#"  id="bookmark" class="menu_haut_droite">Add to favorites</a></B>');

}    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.anglophone-direct.com',document.title);
       }
       BK.onmouseover = function(){
          window.status='Click to add this page to your '+RegExp.$1+' favorites';
          return true;
       }
    }

    else if(OP || IE && !document.uniqueID){
       BK.onclick = function(){
          alert('Your '+RegExp.$1+' browser requires that you\nPress Ctrl & T to Bookmark this page.');
       }
       BK.onmouseover = function(){
          window.status='Your '+RegExp.$1+' browser requires that you Press Ctrl & T to Bookmark this page.';
          return true;
       }
    }

    else if(NS){
       BK.onclick = function(){
          alert('Your '+RegExp.$1+' browser requires that you\nPress Ctrl & D to Bookmark this page.');
       }
       BK.onmouseover = function(){
          window.status='Your '+RegExp.$1+' browser requires that you press Ctrl & D to Bookmark this page.';
          return true;
       }
    }

    else{ BK.innerHTML = '' }