blob: 46e4b6a4b6f4ed00894bb8a66b910acb8633acf5 (
plain)
1
2
3
4
5
6
7
8
|
// @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
|