function ACPM_MEMBER_INFO(thisform) { var errormsg = ""; refreshCheckboxValue(thisform.IS_PHOENIX_MEMBER); if (thisform.IS_PHOENIX_MEMBER.checked) { if (thisform.INPUT_PHOENIX_MEMBER.value.length < 9 || thisform.INPUT_PHOENIX_MEMBER.value.length > 12) errormsg += PHOENIX_MEMBER_NO + INVALID + ".\n"; } return errormsg; } function ACPM_INPUT(thisform) { if (thisform.IS_PHOENIX_MEMBER.checked) { thisform.INPUT_PHOENIX_MEMBER.disabled = false; } else { thisform.INPUT_PHOENIX_MEMBER.value = ""; thisform.INPUT_PHOENIX_MEMBER.disabled = true; } }