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

function unCheckPref(start, end) {
    for (var i = start; i <= end; i++) {
        $("#targetArea_"+i).removeAttr('checked');
        $("#cl_address1_"+i).removeAttr('checked');
    }
}

