// JavaScript Document
function apri_risposta(i)
{document.getElementById('domanda_'+i).style.display='none';
 document.getElementById('risposta_'+i).style.display='inline';
}

function chiudi_risposta(i)
{document.getElementById('domanda_'+i).style.display='inline';
 document.getElementById('risposta_'+i).style.display='none';
}
