
function checkEmploy(start, end) {
    for (var i = start; i <= end; i++) {
        $("#cl_employStyle"+i).attr('checked', 'checked');
    }
}
