there is a tiny JS controlling the display property of an element. here is an example.
JS:
function ouvrir(cebloc) {
styleObj = document.getElementById(cebloc).style;
if (styleObj.display=='none') {styleObj.display = '';}
else {styleObj.display = 'none';}
}
HTML:
<a href="#" onclick="ouvrir('text');">display text</a>
<p id="text" style="display:none;">text</p>