;the "Insert | Hyperlink..." menu command, the "Bookmark from the active document..." button

object BookmarkForm: TBookmarkForm
  Caption = 'Marcadores'
  ClientHeight = 196
  ClientWidth = 307
  object NameLbl: TLabel
    Left = 9
    Top = 5
    Caption = 'Nombre del marcador:'
  end
  object NameEdt: TEdit
    Left = 9
    Top = 21
    Width = 288
    MaxLength = 40
    OnChange = NameEdtChange
  end
  object NameLstBx: TListBox
    Left = 9
    Top = 42
    Width = 288
    Height = 95
    OnClick = NameLstBxClick
  end
  object SortByLbl: TLabel
    Left = 9
    Top = 143
    Caption = 'Ordenar por:'
  end
  object NBtn: TRadioButton
    Left = 80
    Top = 142
    Caption = 'Nombre'
    OnClick = SortClick
  end
  object LBtn: TRadioButton
    Left = 145
    Top = 142
    Caption = 'Ubicación'
    OnClick = SortClick
  end
end