
function addfacebook(){
	//acquisizione informazioni
	titolo = document.title;
	indirizzo = document.location;


	//creazione bottone
	indirizzoFb = 'http://www.facebook.com/sharer.php?u=' + indirizzo + '&t=' + titolo;

	collegamento = document.createElement('A');
	collegamento.setAttribute('href',indirizzoFb);
	collegamento.setAttribute('title','condividi su facebook');
	collegamento.setAttribute('target','_blank');
	collegamento.setAttribute('id','bottoneFb');

	divTesta = document.getElementById('addfb');

	bottone = document.createElement('IMG');
	bottone.setAttribute('src','/immagini/bottone_facebook.gif');
	bottone.setAttribute('alt','facebook');
	bottone.setAttribute('height','14');
	bottone.setAttribute('width','70');

	divTesta.appendChild(collegamento);
	collegamento.appendChild(bottone);	
}

