if (chbox.getAttribute('checked') == 'checked') { chbox.removeAttribute('checked'); } else { chbox.setAttribute('checked', 'checked'); }
chbox.checked = !chbox.checked;