function CreateBookmarkLink() {
    var title = "WC12.COM - World Celebrity Information Portal";
    var url = document.location.href;
  if(/MSIE/.test(navigator.userAgent)) {
    window.external.AddFavorite(url,title);
    return false;
  }
  else if(/Mozilla/.test(navigator.userAgent)){
    if (typeof window.sidebar == "object")
      window.sidebar.addPanel (title, url, "");
    return false;
  }
  else if(/Opera/.test(navigator.userAgent)) {
    var a = document.createElement('A');
    if (!a) return false;
    a.setAttribute('rel','sidebar');
    a.setAttribute('href',url);
    a.setAttribute('title',title);
    a.click();
    return true;
  }
  else
    return false;
}