Входным параметром указываешь атрибут name группы своих чекбоксов
function checkCbox(groupName) {
if (!groupName) { return false; }
var group = document.getElementsByName(groupName), result = [], i;
for (i = group.length; i--;){
if (group[i].checked === true) { result.push(group[i].value); }
}
return result;
}