function addBookmarkForBrowser() {
  if (document.all) {
    window.external.AddFavorite(window.location.href , document.title);
  } 
  else {
    if (window.sidebar) window.sidebar.addPanel(document.title,window.location.href,"")
    else alert('Please Press CTRL + D to Bookmark This Page');
  }
}