// $Id: bookmark_us.js,v 1.4.2.1 2006/11/17 15:25:18 Gurpartap Exp $
/**
* Bookmark Us - Drupal Add to Bookmarks Module.
* @ Released under GNU/GPL License - http://www.gnu.org/copyleft/gpl.html
* @ copyright (C) 2005 by Michael Carico - All rights reserved
**/

function addBookmark(title,url) {

  var msg_netscape = "NetScape message";
  var msg_opera    = "This function does not work with this version of Opera.  Please bookmark us manually by pressing CTRL-D.";
  var msg_other    = "Your browser does not support automatic bookmarks.  Please bookmark us manually by pressing CTRL-D.";
  var agt          = navigator.userAgent.toLowerCase();


  if (agt.indexOf("opera") != -1) 
  {
    if (window.opera && window.print)
    {
      return true;
    } else 
    {
      alert(msg_other);
    }
  }    
  else if (agt.indexOf("firefox") != -1) window.sidebar.addPanel(title,url,"");
  else if ((agt.indexOf("msie") != -1) && (parseInt(navigator.appVersion) >=4)) window.external.AddFavorite(url,title); 
  else if (agt.indexOf("netscape") != -1) window.sidebar.addPanel(title,url,"")         
  else if (window.sidebar && window.sidebar.addPanel) window.sidebar.addPanel(title,url,""); 
  else alert(msg_other);
  
}
