1 焦点:document.all.txtCorp.focus();
2 文本框的 键盘事件 中 调用按钮事件
  function txtKeydown()
  {
    if(event.keycode==13)
    {
      btn.onclick();
    }
  }