<!--Bookmark
function createBookmark() {
  var title = document.title;
  var url = location.href;

  var ua = navigator.userAgent.toLowerCase();
  var firefox = window.sidebar;
  var ie = (ua.indexOf('msie') >= 0);
  var opera = (window.opera && window.print);

  if (firefox) {
    window.sidebar.addPanel(title, url, "");
  }
  else if (ie) {
    window.external.AddFavorite(url, title);
  }
  else if (opera) {
    var a = window.event.target;
    a.rel = "sidebar";
    a.title = title;
    a.href = url;
  }
  else {
    alert('Press Ctrl-D to bookmark this page');
  }
}
//-->

<!--Break out of frames
    if (top.frames.length!=0)
    top.location=self.document.location;
  //-->
