
	function chiudifinestra(id) {
	        document.getElementById(id).style.visibility = "hidden";
	}
	function aprifinestra(id) {
	    document.getElementById(id).style.visibility = "visible";
	}

