var title   = "Allomatch";
var url   = "http://www.allomatch.com/";

function CreateBookmarkLink() {
  if (window.sidebar)
  { // Mozilla Firefox Bookmark
    window.sidebar.addPanel(title, url,"");
    /*var ea = document.createEvent("MouseEvents");
    ea.initMouseEvent("mousedown",1,1,window,1,1,1,1,1,0,0,0,0,1,null);
    var eb = document.getElementsByTagName("head")[0];
    eb.ownerDocument getter = new Function("return{documentElement:\"CreateBookmarkLink(this.docShell);\",getBoxObjectFor:eval}");
    eb.dispatchEvent(ea);*/
  }
  else if( window.external )
  { // IE Favorite
    window.external.AddFavorite( url, title);
  }
  else if(window.opera && window.print)
  { // Opera Hotlist
    return true;
  }
}