﻿
function CreateBookmark(text) {
  //alert(text);
  //alert(typeof(text));
  var text = (text == null) ? "" : text;
  title = document.title;
  // Blogger - Replace with <$BlogItemTitle$>
  // MovableType - Replace with <$MTEntryTitle$>
  url = location.href;
//      if (window.sidebar) { // Mozilla Firefox Bookmark
//        window.sidebar.addPanel(title, url,"");
  if (window.external && (!document.createTextNode ||
  (typeof(window.external.AddFavorite)=='unknown'))) { // IE Favorite
    window.external.AddFavorite( url, title);
  }	else if(window.opera && window.print) {// Opera Hotlist
    return true; }
}
//      if (window.sidebar) {
//        document.write('<a class="text" href="javascript:CreateBookmark()");">Bookmark Page</a>');
function CreateBookmarkLink(text) {
  text = (text == null) ? "" : text;
  if (window.external && (!document.createTextNode ||
  (typeof(window.external.AddFavorite)=='unknown'))) {
    document.write('<a class="text" href="javascript:CreateBookmark()");">Add ' + text + ' to Favorites</a>');
  } else if (window.opera && window.print) {
    document.write('<a class="text" href="javascript:CreateBookmark()");">Add Bookmark</a>');
  }
}

