function SetBookmark() {
  document.getElementById("share").innerHTML = "<span id='share_init'> bookmark</span>";
  document.getElementById("share_init").onclick = ShowBookmark;
}
function Log(from) {
  var xmlHttp=null;
  try {
    xmlHttp=new XMLHttpRequest();
  }
  catch (e) {
   try {
     xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
   }
   catch (e) {
     xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
   }
  }
  if (xmlHttp != null) {
    xmlHttp.open("HEAD", "/log/"+from.title,true);
    xmlHttp.send(null)
  }
  return false;
}
function ShowBookmark() {
  var htm = "<span id='hide_share'>cacher</span>";
  htm += "<a href='http://www.facebook.com/share.php?src=bm&u=__URL__&t=__TITLE__&v=3' target='_blank' title='Facebook' onclick='Log(this);'><img src='/deco/share/bm_facebook.gif'></a>";
  htm += "<a href='http://digg.com/submit/?url=__URL__&title=__TITLE__' target='_blank' title='Digg' onclick='Log(this);'><img src='/deco/share/bm_digg.gif'></a>";
  htm += "<a href='http://del.icio.us/post?&url=__URL__&title=__TITLE__' target='_blank' title='Delicious' onclick='Log(this);'><img src='/deco/share/bm_delicious.gif'></a>";
  htm += "<a href='http://www.google.com/bookmarks/mark?op=add&title=__TITLE__&bkmk=__URL__' target='_blank' title='Google' onclick='Log(this);'><img src='/deco/share/bm_google.gif'></a>";
  htm += "<a href='http://e.my.yahoo.com/config/edit_bookmark?.src=bookmarks&.folder=1&.name=__TITLE__&.url=__URL__&.save=+Save+' target='_blank' title='Yahoo' onclick='Log(this);'><img src='/deco/share/bm_yahoo.gif'></a>";
  htm += "<a href='http://www.stumbleupon.com/submit?url=__URL__&title=__TITLE__' target='_blank'><img src='/deco/share/bm_stumbleupon.gif' title='Stumbleupon' onclick='Log(this);'></a>";
  htm += "<a href='http://www.myspace.com/Modules/PostTo/Pages/?t=__TITLE__&c=%20&u=__URL__&l=2' target='_blank' title='Myspace' onclick='Log(this);'><img src='/deco/share/bm_myspace.gif'></a>";
  htm += "<a href='http://twitter.com/home/?status=__TITLE__%3A%20__URL__' target='_blank' title='Twitter' onclick='Log(this);'><img src='/deco/share/bm_twitter.gif'></a>";
  htm += "<a href='http://technorati.com/faves?add=__URL__' target='_blank' title='Technorati' onclick='Log(this);'><img src='/deco/share/bm_technorati.gif'></a>";
  htm += "<a href='http://reddit.com/submit?url=__URL__&title=__TITLE__' target='_blank' title='Reddit' onclick='Log(this);'><img src='/deco/share/bm_reddit.gif'></a>";
  htm += "<a href='http://myjeeves.ask.com/mysearch/BookmarkIt?v=1.2&t=webpages&title=__TITLE__&url=__URL__' target='_blank' title='Ask' onclick='Log(this);'><img src='/deco/share/bm_ask.gif'></a>";
  htm += "<a href='http://favorites.live.com/quickadd.aspx?url=__URL__&title=__TITLE__' target='_blank' title='Live' onclick='Log(this);'><img src='/deco/share/bm_live.gif'></a>";

  var pg_url = encodeURIComponent(window.location.href);
  var pg_titre = encodeURIComponent(document.title.replace(/\'/g, " "));
  htm = htm.replace(/__URL__/g, pg_url).replace(/__TITLE__/g, pg_titre);
  document.getElementById("share").innerHTML = "<div id='bm'>"+htm+"</div>";
  document.getElementById("hide_share").onclick = SetBookmark;
}

