jetpack.statusBar.append({
  html: '<img src="http://static.yoolink.fr/images/yoo_favicon.ico" style="padding: 2px;"/>',
  width: 24,
  onReady: function(widget){
    $(widget).click(function(){
      var doc = jetpack.tabs.focused.contentDocument;
      var iframe = doc.getElementById("_yoolink_landing_iframe");
      if (iframe) {
        doc.body.removeChild(iframe);
        return;
      }

      var this_url = encodeURIComponent(jetpack.tabs.focused.url);
      var this_title = encodeURIComponent(doc.title);
      var iframe_url = "http://www.yoolink.fr/free_add_or_share/mini_landing?"
      iframe_url += "url_value="+this_url+"&title="+this_title;

      iframe = doc.createElement("iframe");
      iframe.setAttribute("style","width:220px;height:180px;bottom:5px;right:5px;z-index:9999;background-color:white;position:fixed;");
      iframe.setAttribute("id", "_yoolink_landing_iframe");
      iframe.src = iframe_url;
      doc.body.appendChild(iframe);
    });
  } 
});

