var idNotaAttuale = "";

function checkAnchors(idAnchors) {
	if (idNotaAttuale != "" && idNotaAttuale != idAnchors) document.getElementById(idNotaAttuale).style.display = "none";
	idNotaAttuale = idAnchors;
	displayAttuale = document.getElementById(idAnchors).style.display;
	if (displayAttuale == "none") document.getElementById(idAnchors).style.display = "block";
	else document.getElementById(idAnchors).style.display = "none";
}

function closeAnchors(idAnchors) {
	document.getElementById(idAnchors).style.display = "none";
}
