// JavaScript Document
function bookmark(){
  var c=window.location.href;
  var b=document.title;
  if(window.sidebar){
    window.sidebar.addPanel(b,c,"")
  }
  else {
    if(document.all){
      window.external.AddFavorite(c,b)
    }
    else {
      if(window.opera&&window.print) {
        var a=document.createElement("a");
        a.setAttribute("href",c);
        a.setAttribute("title",b);
        a.setAttribute("rel","sidebar");
        a.click()
      }
    }
  }
}

