// found at http://forum.weborum.com/lofiversion/index.php/t1287.html //

with(document){
     writeln('<span id="bookmark"><a href="' + document.URL + '">Bookmark this Page</a></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(location.href,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 = '' }