
function togglee(strClassName, strIdName, strMainSelector)
{
	mainSelector = document.getElementById(strMainSelector);
	blStatus = mainSelector.checked;

    checkboxList = document.getElementsByClassName(strClassName, strIdName);

    for(i = 0; i < checkboxList.length; i++)
        checkboxList[i].checked = blStatus;
}
