function AddBookmark()
{

   // --- Gecko (Netscape 6 etc.) - add to Sidebar ---
   if( window.sidebar && window.sidebar.addPanel)
   {
      window.sidebar.addPanel(this.title, this.href, '' );
   }

   // --- IE Win32 or iCab ---
   else if( window.external && 
            ( navigator.platform == 'Win32' ||
            ( window.ScriptEngine && ScriptEngine().indexOf('InScript') + 1 ))) 
   {
      window.external.AddFavorite(location.href, document.title);
      return true;
   }

   // --- Opera 6+ - add as sidebar panel to Hotlist ---
   else if( window.opera && window.print ) 
   {
      return true;
      //window.alert( 'Please click OK then press Ctrl+T to create a bookmark' );
   }

   // --- NS4 & Escape ---
   else if( document.layers )
   {
      window.alert( 'Please click OK then press Ctrl+D to create a bookmark' );
   }

   // --- other browsers ----
   else
   {
       window.alert( 'Please use your browser\'s bookmarking facility to create a bookmark' );
   }
   return false;
}

