blob: 884e0bf9061da06b23f1ab19c7bbaaf77160b4fd (
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
|