function clickedSpoiler (div) {
	var target = div.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0];
	if (target.style.display != '') {
		target.style.display = '';
		this.innerHTML = '<a href="#" onclick="return false;">Nascondi Testo</a>';
	}
	else {
		target.style.display = 'none';
		this.innerHTML = '<a href="#" onclick="return false;">Mostra Testo</a>';
	}
	return false;
}

