function TargetBlank()
{
  var i = 0;
  var collegamenti = document.links;
  for (i=0; i<collegamenti.length; i++)
  {
    if (collegamenti[i].rel == "esterno")
    {
      collegamenti[i].target = "_blank";
    }
  }
}

function facebook()
{
subj=encodeURIComponent(document.title);
loc=encodeURIComponent(window.location.href);
percorso="http://www.facebook.com/sharer.php?u="+loc+"&t="+subj;
window.open(percorso,'Facebook');
}