un bel mix

css
codice:
span#mostra {
 display: none;
}
javascript
codice:
function mostra() {
 if (document.getElementById('mostra').style.display=='none') {
  document.getElementById('mostra').style.display='inline';
 }
 else {
  document.getElementById('mostra').style.display='none';
 }
}
html
codice:
mostra
<span id="mostra">
 hello world! 
</spna>