function spoiler(id){ element = document.getElementById(id); if (element.style.display == 'none'){ element.style.display = ''; } else{ element.style.display = 'none'; } return false; }