  function OnLoad() {
    var f = null;
    if (document.getElementById) {
    f = document.getElementById("frmEBill");
    } else if (window.frmEBill) {
    f = window.frmEBill;
    }
    if (f) {
      f.setAttribute("autocomplete", "off");
      f.tIVRSID.focus();
    }
  }

  function OnHTLoad() {
    var f = null;
    if (document.getElementById) {
    f = document.getElementById("frmHTBill");
    } else if (window.frmHTBill) {
    f = window.frmHTBill;
    }
    if (f) {
      f.setAttribute("autocomplete", "off");
      f.tLOCID.focus();
    }
  }

  function OnDefaultLoad() {
    var f = null;
    if (document.getElementById) {
    f = document.getElementById("frmELogn");
    } else if (window.frmELogn) {
    f = window.frmELogn;
    }
    if (f) {
      f.setAttribute("autocomplete", "off");
      f.USER.focus();
    }
  }

  function LoadDivText() {
    var f = null;
    f = document.BillForm.tGetType.options[document.BillForm.tGetType.selectedIndex].value;
    if (f=="") {
     BillType.innerText='Select Bill Identifier';
    } else if (f==1) {
     BillType.innerText='IVRS ID';
    } else if (f==2) {
     BillType.innerText='Service Number';
    } else if (f==3) {
     BillType.innerText='Consumer Name';
    } else {
     BillType.innerText='Select Bill Identifier';
    }
  }