function addBookmark(title,url) {
	if (window.sidebar) { 
		window.sidebar.addPanel(title, url,""); 
	} else if( document.all ) {
		window.external.AddFavorite( url, title);
	} else if( window.opera && window.print ) {
		return true;
	}
	else{
		alert('Premi CTRL+D');
	}
}

site_url = location.href;
site_title = document.title;
add_url = "http://api.addthis.com/oexchange/0.8/forward/"
add_url2 = "/offer\?username=dive3000&title="+site_title+"&url="+site_url+"\" title=\""
social = new Array("other","print","favorites","delicious","twitter","google","facebook");
document.write ("<div style=\"clear:both;\">")


document.write("<a style=\"display:block; float:right;background:url('/addthis/addthis.png') no-repeat; background-position:-"+32*(0)+"px -0px;width:32px; height:32px;\" target=\"blank\" href=\""+add_url+add_url2+"More Bookmark Services\"></a>");

document.write("<a style=\"display:block; float:right;background:url('/addthis/addthis.png') no-repeat; background-position:-"+32*(1)+"px -0px;width:32px; height:32px;\" href=\"javascript:window.print();\" title=\"Stampa\"></a>");

document.write("<a style=\"display:block; float:right;background:url('/addthis/addthis.png') no-repeat; background-position:-"+32*(2)+"px -0px;width:32px; height:32px;\" href=\"javascript:addBookmark('"+site_title+"','"+site_url+"');\" title=\"Aggiungi ai preferiti\"></a>");

for (i=3;i<social.length;i++){
	if (social[i] == "print") {string = ""}else{string ="add to "};
	document.write("<a style=\"display:block; float:right;background:url('/addthis/addthis.png') no-repeat; background-position:-"+32*i+"px -0px;width:32px; height:32px;\" href=\""+add_url+social[i]+add_url2+string+social[i]+"\" target=\"_blank\"></a>");
}
document.write("</div>")