TITOLOUNO
<p id="testouno' style="display:none;">
tutto il testo relativo al titolouno</p>

TITOLODUE
<p id="testodue' style="display:none;">
tutto il testo relativo al titolodue</p>
...

dove nella head della pagina c'e` la funzione:
codice:
function apri_chiudi(idd) {
  var obj = document.getElementById(idd);
  obj.style.display = (obj.display == 'none') ? 'block' : 'none';
}