function selectAll() {
if ($("#selectAllBox").attr("checked") != true) {
$(".cbox").each(function (i) {
$(this).removeAttr("checked");
});
} else {
$(".cbox").each(function (i) {
$(this).attr("checked", "checked");
});
}
}
if ($("#selectAllBox").attr("checked") != true) {
$(".cbox").each(function (i) {
$(this).removeAttr("checked");
});
} else {
$(".cbox").each(function (i) {
$(this).attr("checked", "checked");
});
}
}