chk_AALL.setChangeHandler("checkAll");
function checkAll() {
trace("in function");
if (chk_AALL.value == true) {
for (i=1; i<8; i++) {
["chk_A0"+i].setValue(true);
trace(i + " true");
}
} else if (chk_AALL.value == false) {
for (i=1; i<8; i++) {
["chk_A0"+i].setValue(false);
trace(i + " false");
}
}
}