<!-- // autore : Filippo Levizzani - Made by Pontaccio Srl and copyrighted to Ottiero Ottieri website 
var EventiShown = 0;
function showEventi() {
	if (EventiShown == 0) {
		document.getElementById('irrealta').style.display = 'block';
		document.getElementById('irrealta2').style.display = 'block';
		EventiShown = 1;
	}else{
		//location.href='/convegno.html'
		document.getElementById('irrealta').style.display = 'none';
		document.getElementById('irrealta2').style.display = 'none';
		EventiShown = 0;
	}
}
// -->
