<!--

function disabler() {
  if (document.accountDetails) {
    if (document.accountDetails.tpoa.value == 'TEXT') {
      fieldEnable();
      }
    else {
      fieldDisable();
      }
    }
  }

function fieldDisable() {
  document.accountDetails.tpoaText.value='N/A';
  document.accountDetails.tpoaText.disabled=true;
  }

function fieldEnable() {
  if (document.accountDetails.tpoaText.value=='N/A') {
    document.accountDetails.tpoaText.value='Reply Text';
    }
  document.accountDetails.tpoaText.disabled=false;
  }

//-->
