function checkBox(cbObjName)
{
    cbObj = document.getElementById(cbObjName);
    cbObj.checked = !cbObj.checked;
}
