// @license http://www.wtfpl.net/txt/copying/" WTFPL function toggle(divid) { var cont = document.getElementById(divid); cont.style.display = cont.style.display == 'none' ? 'block' : 'none'; } // @license-end