function apri(identificatore){
	document.getElementById(identificatore).style.display = 'block';
	}
function chiudi(identificatore){
	document.getElementById(identificatore).style.display = 'none';
	}

function apriEve(id1,id2){
	document.getElementById(id1).style.display = 'block';
	document.getElementById(id2).style.display = 'none';
	}
function chiudiEve(id1,id2){
	document.getElementById(id1).style.display = 'none';
	document.getElementById(id2).style.display = 'block';
	}