;the "File | Save Special | Save As Web Page..." menu command

object SaveAsWebForm: TSaveAsWebForm
  Caption = 'Guardar como Página Web'
  ClientHeight = 202
  ClientWidth = 592
  object TitleLbl: TLabel
    Left = 9
    Top = 21
    Caption = '&Título:'
  end
  object TitleEdt: TEdit
    Left = 86
    Top = 17
    Width = 180
  end
  object KeywordsLbl: TLabel
    Left = 9
    Top = 47
    Caption = '&Palabras clave:'
  end
  object KeywordsEdt: TEdit
    Left = 86
    Top = 43
    Width = 180
  end
  object AuthorLbl: TLabel
    Left = 9
    Top = 73
    Caption = '&Autor:'
  end
  object AuthorEdt: TEdit
    Left = 86
    Top = 69
    Width = 180
  end
  object SepFldrChkBx: TCheckBox
    Left = 9
    Top = 102
    Caption = 'Guardar imágenes en una &carpeta separada'
    OnClick = SepFldrChkBxClick
  end
  object BkGrndGrpBx: TGroupBox
    Left = 277
    Top = 12
    Width = 305
    Height = 134
    Caption = 'Fondo'
    object BkPreviewLbl: TLabel
      Left = 208
      Top = 11
      Caption = 'Vista previa:'
    end
    object BkPreviewImage: TImage
      Left = 208
      Top = 28
      Width = 87
      Height = 97
    end
    object BkColorLbl: TLabel
      Left = 10
      Top = 31
      Caption = '&Color:'
    end
    object BkColorCmbBx: TColorPalComboBox
      Left = 55
      Top = 28
      Width = 143
      OnChange = BkColorCmbBxChange
    end
    object BkPictLbl: TLabel
      Left = 10
      Top = 80
      Caption = '&Imagen:'
    end
    object PictEdit: TEdit
      Left = 55
      Top = 78
      Width = 143
      Color = -2147483633
      ReadOnly = True
    end
    object BrowsePictBtn: TButton
      Left = 10
      Top = 105
      Width = 92
      Height = 20
      Caption = '&Buscar...'
      OnClick = BrowsePictBtnClick
    end
    object ClearPictBtn: TButton
      Left = 107
      Top = 105
      Width = 92
      Height = 20
      Caption = 'Bo&rrar'
      OnClick = ClearPictBtnClick
    end
  end
  object PagePreviewBtn: TButton
    Left = 10
    Top = 170
    Width = 176
    Caption = 'Vista previa en el na&vegador...'
    OnClick = PagePreviewBtnClick
  end
  object SaveBtn: TButton
    Left = 423
    Top = 170
    Width = 75
    Caption = 'Guardar'
    Default = True
    OnClick = SaveBtnClick
  end
  object CancelBtn: TButton
    Left = 504
    Top = 170
    Width = 75
    Cancel = True
    Caption = 'Cancelar'
    ModalResult = 2
  end
end