function mostra(id) {
document.getElementById(id).style.display="";
} 
function nascondi(id) {
document.getElementById(id).style.display="none";
} 