function toggle_parent(target) { body = target.parentNode.parentNode.children[1]; if (body.style.display === null || body.style.display === "") { target.innerHTML = "[ + ]"; body.style.display = "none"; } else { target.innerHTML = "[ - ]"; body.style.display = ""; } } function toggle_comments(target) { body = target.parentNode.parentNode.parentNode.children[1]; if (body.style.display === null || body.style.display === "") { target.innerHTML = "[ + ]"; body.style.display = "none"; } else { target.innerHTML = "[ - ]"; body.style.display = ""; } } function swap_comments(source) { comments = document.getElementById("comments"); var fallback = comments.innerHTML; comments.innerHTML = '