home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / utility / rtfgen.zip / RTFGEN < prev    next >
Text File  |  1992-02-23  |  20KB  |  693 lines

  1. \docstart
  2. \title Contents`
  3. \topic contents`
  4. \keyword contents`
  5. \browse general:004`
  6. \b
  7. ==========
  8. \b Contents`
  9.  
  10. [Overview:overview]`
  11. [General Editing Considerations:EditingConsiderations]`
  12. [RTFGEN Defaults:Defaults]`
  13. [Steps for Building a Help File:basicsteps]`
  14. [ASCII Input File Layout:layout]`
  15. [Commands:Commands]`
  16. [References:References]`
  17. [Copyright:Copyright]`
  18. ----------
  19.  
  20. \topic Commands`
  21. \title Commands`
  22. \keyword commands`
  23. \browse general:030`
  24. ========
  25. \b Commands`
  26.  
  27. [Command Syntax:CommandSyntax]`
  28. RTFGEN Commands`
  29.    [Topic Header Commands:TopicHeaderCommands]`
  30.    [Cross Reference Commands:CrossReferences]`
  31.    [Definitions:Definitions]`
  32.    [Bitmap Commands:BitmapCommands]`
  33.    [Block Formatting Commands:BlockFormatting]`
  34. RTF Commands`
  35.    [Font Commands:FontCommands]`
  36.    [Paragraph Commands:ParagraphCommands]`
  37.    [Tabbing Commands:TabbingCommands]`
  38. ------
  39.  
  40. \title Overview`
  41. \topic overview`
  42. \browse general:005`
  43. ===========
  44. \b Overview`
  45.  
  46. Normally, to create a help file with the Windows help compiler,
  47. you must first write a help topic file using a Rich Text Format (RTF)
  48. word processor.  For many, there are two problems here:`
  49.  
  50. \blockstart \li500\fi-240`
  51.   1. RTF word processors are expensive.`
  52.   2. Learning to use a new word processor is a nuisance and not
  53.      very productive.`
  54. \blockend
  55.  
  56. RTFGEN solves both these problems by allowing you to use your favorite
  57. ASCII text editor to produce RTF formatted files acceptable to the
  58. help compiler.`
  59. --------------
  60.  
  61. \title General Editing Considerations`
  62. \topic EditingConsiderations`
  63. \keyword special characters;tabs`
  64. \keyword comments`
  65. \browse general:010`
  66. ========
  67. \b General Editing Considerations`
  68.  
  69. Almost any ASCII editor may be used.  I use Borland's TURBO or 
  70. TPW.  It's probably best to turn off options like 'optimal fill' 
  71. which can leave invisible and possibly unknown tab characters in the
  72. document.`
  73.  
  74. The use of tabs is required to obtain column allignment with 
  75. proportional fonts.  Either the tab character or the RTF command, 
  76. [\\tab:TabbingCommands], may be used with the same effect.
  77. The \\tab has the advantage
  78. that it's visible in your ASCII file.`
  79.  
  80. RTFGEN and/or the RTF language have special use for the following 
  81. characters:`
  82.  
  83. \blockstart \li1200\tx1200\fi-840`
  84.   {\b\`}    (grave accent) Used to mark end of paragraphs.`
  85.   {\b\[}, {\b\]}    Used to mark jumps and definitions.`
  86.   {\b\{}, {\b\}}    Used to mark areas where font characteristics will change.`
  87.   {\b\\}    Used as a command start character.`
  88. \blockend
  89.  
  90. When these characters are to be used in the text, they should be 
  91. preceded by a '\\'.  Thus, '\\\[' will cause the left bracket to be 
  92. inserted in text and '\\\\' will result in a single backslash being 
  93. inserted in text.`
  94.  
  95. ( * . . . * ) may be used to insert comments within the text.`
  96. --------
  97.  
  98. \title RTFGEN Defaults`
  99. \topic Defaults`
  100. \keyword defaults`
  101. \browse general:015`
  102. =======
  103. \b RTFGEN Defaults`
  104.  
  105.    Helv, 10 point font.`
  106.  
  107.    Paragraphs are left justified.  The first line is not
  108.    indented.`
  109.  
  110.    Paragraph indentation is set by indentation of the first
  111.    line of the paragraph.`
  112.  
  113.    Tabs are spaced every 720 [[twips:twipdef]] (about 6 default
  114.    characters).`
  115.  
  116. Any of these defaults may be changed globally for the whole 
  117. document, or locally at the topic, paragraph, or even character level.`
  118. ---------
  119.  
  120. \title Steps for Building a Help File`
  121. \topic basicsteps`
  122. \keyword steps for building a help file;building a help file`
  123. \browse general:020`
  124. =========
  125. \b Steps for Building a Help File`
  126.  
  127. The steps required to create a Windows help file using RTFGEN 
  128. are:`
  129.  
  130. \blockstart \li600\fi-240`
  131.      1. Using an ASCII editor, create one or more input text files.
  132.     [See input file layout:layout]`
  133.      2. Use RTFGEN to convert these files to RTF files.`
  134.      3. Create a Help Project File (.HPJ) for input to the help
  135.     compiler.  This file should reference the RTF files.`
  136.      4. Run the help compiler to make the help file.`
  137. \blockend
  138.  
  139. Steps 3 and 4 are described in the help compiler documentation.
  140. This documentation deals with the first two steps only.`
  141.  
  142. Once the ASCII files have been written,  RTFGEN is used to 
  143. convert them to suitable RTF format.  The file, [[HEADING:headingDef]],
  144. must be present on the default drive.  From the DOS prompt:`
  145.  
  146.   RTFGEN  \[Infile \[Outfile\]\]`
  147.  
  148. The optional filenames specify the names of the ASCII input file 
  149. and the RTF file to be generated.  If no extensions are given,
  150. .RTF is used by default for the output file.  If the output
  151. filename is missing from the command line, an RTF file will be 
  152. created using the same name as the source file.  When neither 
  153. filename is specified, names will be requested once execution 
  154. starts.`
  155.  
  156.   RTFGEN MYHELP`
  157.  
  158. will cause RTFGEN to look for a source file, MYHELP and create an
  159. object file, MYHELP.RTF.`
  160. -----------
  161.  
  162. \title HEADING File`
  163. \topic headingDef`
  164. \keyword HEADING`
  165. ========
  166. The file, HEADING, is copied to the start of each RTF file generated.
  167. Along with some boilerplate RTF commands, it contains the font table
  168. defining fonts by number.`
  169. --------
  170.  
  171. \title ASCII Input File Layout`
  172. \topic layout`
  173. \keyword layout;ASCII input file layout;input file layout`
  174. \browse general:025`
  175. \li600\brdrl\brdrr\ri600\sb-50\sa-50  (*general paragraph stuff for whole topic*)
  176. ==========
  177. \pard\b RTFGEN ASCII Input File Layout`
  178.  
  179. \brdrt\qc {\fs16 [document header:doc_header]}  `
  180. \b[[\\docstart:docstartDef]]{\fs30  }` (*space of larger font gives more height *)
  181. \qc  {\fs16 [topic header:topicHeader]} `
  182.  ===========[[==:EqualDef]]`
  183.     `
  184. \qc\fs16 [topic text:TopicText]`
  185.     `
  186.  - - - - - - - - - - - [[- -:HyphenDef]]`
  187.   \blockstart \li600`
  188.   . . . . . .`
  189.   \blockend
  190. \qc \fs16 [topic header:TopicHeader]`
  191.  ===========[[==:EqualDef]]`
  192.     `
  193. \qc\fs16 [topic text:TopicText]`
  194.     `
  195.  - - - - - - - - - - - [[- -:HyphenDef]]`
  196. \brdrb\b [[\\docend:DocendDef]]`
  197. ------------
  198. \topic TwipDef`
  199. ======
  200. TWIP: A 20th of a point.  For our purposes, 1440 twips per inch.
  201. One 10 point character is about 120 twips wide.`
  202. ------
  203. \topic EndofParaDef`
  204. ======
  205. A grave accent, '{\b\`}', is used to mark paragraph  ends.`
  206. -----
  207. \topic DocstartDef`
  208. =========
  209. The command, \\docstart, marks the end of the document header and the
  210. start of the topics.`
  211. -----------
  212. \topic DocendDef`
  213. ========
  214. The command, \\docend, marks the end of the document.`
  215. ----------
  216. \topic EqualDef`
  217. \title Start of Topic Text Marker`
  218. \keyword ========`
  219. =========
  220. \b Start of Topic Text Marker`
  221.  
  222. A row of 5 or more '='s starting in column 1 marks the end of a topic header
  223. and the start of the topic text.`
  224. -------
  225. \topic HyphenDef`
  226. \title End of Topic Marker`
  227. \keyword - - - - - - -;formfeed`
  228. ======
  229. \b End of Topic Marker`
  230.  
  231. A row of 5 or more hyphens starting in column 1 marks the end of a topic.`
  232.  
  233. An optional formfeed or several blank lines may follow the row of hyphens
  234. to better format your ASCII file.`
  235. --------
  236. \title Document Header`
  237. \topic Doc_Header`
  238. \keyword document header;\\docstart`
  239. ============
  240. \b Document Header`
  241.  
  242. The optional document header may contain commands to overide the
  243. [[RTFGEN defaults:defaults]].  Commands
  244. changing the font, font size, or paragraph first line indent might be
  245. appropriate here.`
  246.  
  247. The \\docstart command follows the document header to mark the start of
  248. the topics.`
  249.  
  250. Example:`
  251.  
  252. \\f0 \\fs24   ( * Times Roman font, 12 pitch for entire help file * )`
  253. \\docstart`
  254. ------------
  255. \title Topic Header`
  256. \topic TopicHeader`
  257. \keyword topic header`
  258. ===========
  259. \b Topic Header`
  260.  
  261. The topic header contains commands defining build tags, context 
  262. strings, title, keywords, and browse sequence number as appropriate for the
  263. topic.  Topic global formatting commands may also be included.
  264. The topic header section is terminated with a row of 5 or more
  265. '='s.`
  266.  
  267.    Example:`
  268.  
  269.    \\title Table of Contents\``
  270.    \\topic contents\``
  271.    \\keyword contents\``
  272.    \\f0 \\fs24   ( * Times Roman font, 12 pitch for this topic * )`
  273.    ============  ( * end of topic header * )`
  274.  
  275. \b See also : [Topic Header Commands:topicHeaderCommands]`
  276. ------------
  277.  
  278. \title Topic Text`
  279. \topic TopicText`
  280. \keyword topic text;text entry rules;indenting`
  281. ==========
  282. \b Topic Text`
  283.  
  284. Text for the topic is entered here.  Rules for text entry are:`
  285.  
  286.   Paragraph ends are marked with a grave accent, '\`'`
  287.  
  288.   Blank lines will appear as blank lines.`
  289.  
  290.   By default, paragraphs are left justified.  The indenting of
  291.   the paragraph is set by the indenting of the first line of
  292.   the paragraph.  Indenting of lines after the first is
  293.   ignored.`
  294.  
  295.   Carriage returns and linefeeds within the paragraph are
  296.   ignored as far as the final results are concerned.`
  297.  
  298.   Commands may be interspersed within the text for special
  299.   effects.  The commands themselves won't appear in the final
  300.   result.`
  301.  
  302. \b Examples:`
  303. ASCII`
  304.    Here is a typical paragraph.  It will appear in the font`
  305.    and pitch specified in the topic header or document` 
  306.    header.  It is left justified and indented by 360 [[twips:twipdef]]`
  307.    because the first line is so indented.  The paragraph`
  308.    is terminated with a grave accent character.\``
  309.  
  310. Result`
  311.    Here is a typical paragraph.  It will appear in the font
  312.    and pitch specified in the topic header or document 
  313.    header.  It is left justified and indented by 360 twips
  314.    because the first line is so indented.  The paragraph
  315.    is terminated with a grave accent character.`
  316.  
  317. ASCII`
  318.    \\b\\fi480 Here is another paragraph.  It will appear in`
  319.    bold font because of the \\b command.  It will also be`
  320.    be indented by 360 [[twips:twipdef]] and left justified.  The`
  321.    \\fi480 will cause the first line of the paragraph`
  322.    to be indented an additional 480 twips.\``
  323.  
  324. Result`
  325.    \b\fi480 Here is another paragraph.  It will appear in
  326.    bold font because of the \\b command.  It will also be
  327.    be indented by 360 twips and left justified.  The
  328.    \\fi480 will cause the first line of the paragraph
  329.    to be indented an additional 480 twips.`
  330. -----------
  331.  
  332. \title Command Syntax`
  333. \topic CommandSyntax`
  334. \keyword syntax;command syntax;commands`
  335. \browse commands:005`
  336. =======
  337. \b Command Syntax`
  338.  
  339. Commands for RTFGEN and RTF commands passed thru to the help compiler
  340. have a similar syntax.  Commands start with a 
  341. backslash followed by a {\ul lowercase} alpha symbol.  Some RTF
  342. commands have a numerical value attached.  Some RTFGEN commands 
  343. have an additional parameter string.`
  344.  
  345.   Examples:`
  346.  
  347.   \\box`
  348.   \\topic <topic name>`
  349.   \\fs24          RTF command with number`
  350.   \\fi-720        minus sign may be used if appropriate`
  351.  
  352. When commands are mixed with text, a trailing space may be 
  353. required as a delimiter.  The first space following a command is 
  354. considered part of the command--{\ul additional spaces are
  355. part of the text}.`
  356. ----------
  357.  
  358. \title Topic Header Commands`
  359. \topic TopicHeaderCommands`
  360. \keyword topic header commands;footnotes;commands`
  361. \browse commands:010`
  362. ========
  363. \b Topic Header Commands`
  364.  
  365.   \\buildtag <parameter string>\``
  366.   \\topic <parameter string>\``
  367.   \\title <parameter string>\``
  368.   \\keyword <parameter string>\``
  369.   \\browse <parameter string>\``
  370.  
  371. These commands correspond to the *, #, $, K, and + footnotes 
  372. described in the help compiler documentation.  Each
  373. topic header will contains one or more of these commands
  374. as appropriate (ordering is unimportant).`
  375.  
  376. The parameter string should--`
  377.  
  378.   have format and contents exactly as described in the help compiler
  379.   documentation for the equivalent footnote.`
  380.  
  381.   be entirely on one line.`
  382.  
  383.   be terminated by an [[end of paragraph mark:EndofParaDef]].`
  384.  
  385. More than one \\keyword command may be used if the number of keywords
  386. would exceed the allowable editor line length.`
  387.  
  388.  
  389.   Examples:`
  390.  
  391.   \\topic proc_deleting_text\``
  392.   \\title Deleting Text\``
  393.   \\browse procedures:020\``
  394.   \\keyword delete;clipboard\``
  395. ---------
  396.  
  397. \title Cross Reference Commands`
  398. \topic CrossReferences`
  399. \keyword cross references`
  400. \browse commands:015`
  401. ========
  402. \b Cross References`
  403.  
  404. Cross references may be included in the topic text using the 
  405. format:`
  406.  
  407.   \[<green text>:<context>\]`
  408.  
  409. where the brackets indicate a cross reference, <green text> will 
  410. appear highlighted, and <context> is the topic context string for 
  411. the jump destination.`
  412.  
  413.   Example:`
  414.  
  415.   To change the color of an existing object, the object is first
  416.   \[selected:selecting\].  Its color may then be changed.\``
  417. ------------
  418.  
  419. \title Definitions`
  420. \topic Definitions`
  421. \keyword definitions`
  422. \browse commands:020`
  423. =========
  424. \b Definitions`
  425.  
  426. Definitions may also be included in topic text by enclosing them 
  427. in {\ul double} brackets:`
  428.  
  429.   \[\[<green text>:<context>\]\]`
  430.  
  431.   Example:`
  432.  
  433.   Each space is equivalent to 120 \[\[twips:twip_def\]\].\``
  434. ---------
  435.  
  436. \title Bitmap Commands`
  437. \topic BitmapCommands`
  438. \keyword bitmaps;commands`
  439. \browse commands:025`
  440. =========
  441. \b Bitmap Commands`
  442.  
  443.   \\bml <filename>`
  444.   \\bmr <filename>`
  445.   \\bmc <filename>`
  446.  
  447. These commands are used to insert bitmaps within the topic text.`  
  448.  
  449.   Example:`
  450.  
  451. ASCII`
  452.   A bitmap may be placed in a sentence \\bmc glass.bmp just like 
  453.   any character.\``
  454.  
  455. Result`
  456.   A bitmap may be placed in a sentence \bmc glass.bmp just like
  457.   any character.`
  458.  
  459. It's also possible to use a bitmap to cause a jump or bring up a 
  460. definition as:`
  461.  
  462. ASCII`
  463.  
  464.    \[\[\\bml tryme.bmp:bmpPop\]\]\``
  465.  
  466. Result`
  467.  
  468.    [[\bml tryme.bmp:bmpPop]]`
  469. ---------
  470.  
  471. \topic bmpPop`
  472. ======
  473. Illustrates a bitmap popup.`
  474. ------
  475.  
  476. \title Block Formatting Commands`
  477. \topic BlockFormatting`
  478. \keyword block formating command;commands;\\blockstart;\\blockend`
  479. \browse commands:030`
  480. =========
  481. \b Block Formatting Commands`
  482.  
  483.   \\blockstart <commands>\``
  484.   \\blockend`
  485.  
  486. The blockstart,  blockend commands define a block over which a set 
  487. of RTF commands will apply.  These commands are used mainly when 
  488. laying out tables where formatting is somewhat complex.  An 
  489. example of their use is given in the
  490. [tabbing commands section:TabbingCommands].`
  491.  
  492. The block commands may be nested to a level of 4.`
  493. --------
  494.  
  495. \title Font Commands`
  496. \topic FontCommands`
  497. \keyword font commands;commands;font table`
  498. \browse commands:035`
  499. =======
  500. \b Font Commands`
  501.  
  502. Fonts are refered to by number.  Number vs font is set by the 
  503. font table in the [[HEADING:headingDef]] file.  For the HEADING file supplied:`
  504.  
  505.   0  Times Roman`
  506.   1  Symbol`
  507.   2  Helv (default)`
  508.   3  Courier`
  509.  
  510. You can add fonts or change the order by editing the HEADING 
  511. file.`
  512.  
  513. \blockstart \li1500\fi-1100\tx1500`
  514.   \\f000    change to font 000`
  515.   \\fs000    set font size in half points`
  516.   \\plain    plain text (as opposed to bold, italic)`
  517.   \\b    bold`
  518.   \\i    italic`
  519.   \\ul    underline`
  520.   \\uldb    double underline`
  521.   \\uld    dotted underline`
  522.   \\strike    strikethru text`
  523. \blockend
  524.  
  525. The scope of font commands may be document global (placed in 
  526. document header), topic global (placed in topic header), 
  527. paragraph global (placed at start of paragraph), or character or 
  528. word global (scope defined with \{ . . \}).`
  529.  
  530. Examples:`
  531. ASCII`
  532.   \\b This paragraph will appear in bold text.\``
  533.  
  534. Result`
  535.   \b This paragraph will appear in bold text.`
  536.  
  537. ASCII`
  538.   This paragraph is \{\\ul mostly\} in plain text with a \{\\b bold\} 
  539.   and an \{\\i italicized\} word.  \{\\f0 Fonts and \\fs30 pitch\} can be 
  540.   temporarily changed.\``
  541.  
  542. Result`
  543.   This paragraph is {\ul mostly} in plain text with a {\b bold}
  544.   and an {\i italicized} word.  {\f0 Fonts and \fs30 pitch} can be
  545.   temporarily changed.`
  546. ---------
  547.  
  548. \title Paragraph Commands`
  549. \topic ParagraphCommands`
  550. \keyword paragraph commands;commands;indenting;justifying;boxed paragraphs`
  551. \browse commands:040`
  552. =========
  553. \b Paragraph Commands`
  554.  
  555. \blockstart \li1500\fi-1100\tx1500`
  556.   \\par    end of paragraph.  RTFGEN handles this.`
  557.   \\pard    reset to paragraph defaults.  RTFGEN handles this.`
  558.   \\li000    left paragraph indent in [[twips:twipdef]].  RTFGEN handles this.`
  559.   \\fi000    first line indent.  May be negative.`
  560.   \\ri000    right paragraph indent.`
  561.   \\sb000    space below paragraph.`
  562.   \\sa000    space above paragraph.`
  563.  
  564.   \\ql    left justified (default)`
  565.   \\qc    paragraph is centered`
  566.   \\qr    right justified`
  567.  
  568.   \\box    paragraph is surrounded by a box`
  569.   \\brdrl    left border`
  570.   \\brdrb    bottom border`
  571.   \\brdrr    right border`
  572.   \\brdrt    top border`
  573. \blockend
  574.   
  575. The scope of paragraph commands may be document global (placed in 
  576. document header), topic global (placed in topic header), or 
  577. paragraph global (placed at start of paragraph).`
  578.  
  579. Examples:`
  580. ASCII`
  581. \\box\\qc This paragraph is surrounded by a box and is centered.\``
  582.  
  583. Result`
  584. \box\qc This paragraph is surrounded by a box and is centered.`
  585.  
  586. ASCII`
  587.       \\fi-360 The first line of this paragraph overhangs by
  588.       about 3 characters.  Note that RTFGEN has already
  589.       indented the paragraph 720 [[twips:twipdef]] because of its
  590.       interpretation of
  591.       the 6 character indentation on the first line.\``
  592.  
  593. Result`
  594.       \fi-360 The first line of this paragraph overhangs by
  595.       about 3 characters.  Note that RTFGEN has already
  596.       indented the paragraph 720 twips because of its
  597.       interpretation of
  598.       the 6 character indentation on the first line.`
  599. ----------
  600.  
  601. \title Tabbing Commands`
  602. \topic TabbingCommands`
  603. \keyword tabs;tabbing commands;tab stops`
  604. \browse commands:045`
  605. ==========
  606. \b Tabbing Commands`
  607.  
  608. In RTFGEN, either the tab character or the RTF command, \\tab, may 
  609. be used to produce a tab in the help file.  By default, tabs are 
  610. every 720 [[twips:twipdef]] (about 6 characters).  If neat columns are
  611. desired with proportional fonts, tabs are a must.`
  612.  
  613. \blockstart \li1500\fi-1100\tx1500`
  614.   \\tab    causes tab`
  615.   \\tx0000    defines tab position in [[twips:twipdef]].  May be used
  616.                    multiply and should be used prior to using 
  617.            tabs.`
  618. \blockend
  619.  
  620. The following should be used just prior to the \\tx000 command to 
  621. which they are to apply:`
  622.  
  623. \blockstart \li1500\fi-1100\tx1500`
  624.   \\tqr    tab is right justified`
  625.   \\tqc    tab is centered`
  626. \blockend
  627.  
  628. The \\blockstart..\\blockend commands may be used to prepare the 
  629. format for a table.`
  630.  
  631. Example:`
  632. ASCII`
  633. \\blockstart \\li1000\\tqr\\tx2700\\tqc\\tx4000\` ( * tab setup * )`
  634.   \\ul Left\\tab Right\\tab Centered\`  ( * underlined table heading * )`
  635.   Data1\\tab 1234\\tab 12345\``
  636.   ABC \\tab 12\\tab 3333444\``
  637.   XYZdef\\tab 45678\\tab 9\``
  638. \\blockend`
  639.  
  640. Result`
  641.   \blockstart \li1000\tqr\tx2700\tqc\tx4000` (* tab setup *)
  642.   \ul Left\tab Right\tab Centered`  (* underlined table heading *)
  643.   Data1\tab 1234\tab 12345`
  644.   ABC \tab 12\tab 3333444`
  645.   XYZdef\tab 45678\tab 9`
  646.   \blockend
  647. --------
  648.  
  649. \title References`
  650. \topic References`
  651. \keyword references`
  652. \browse general:035`
  653. =========
  654. \b References`
  655.  
  656. The following files may be found on CompuServe in several locations.
  657. To locate them, use the IBM File Finder (GO IBMFF).`
  658.  
  659. \blockstart \li1700\fi-1500\tx1700`
  660.   RTF.TXT    Info on the RTF syntax.  Many more commands 
  661.                    are listed than given here.`
  662.   QDHELP.LZH    Another system to produce help files using an
  663.            ASCII editor.`
  664. \blockend
  665. --------
  666.  
  667. \title Copyright`
  668. \topic Copyright`
  669. \keyword copyright`
  670. \browse general:040`
  671. =========
  672. \b\qc (C) Copyright 1992 by L. David Baldwin.`
  673. \qc All Rights Reserved`
  674.  
  675. RTFGEN may be copied and distributed freely providing that no fee 
  676. is charged and it is not part of a package for which a charge is 
  677. made.`
  678.  
  679. Please report all bugs, suggestions, and problems to Dave 
  680. Baldwin, CompuServe ID #76327,53.`
  681.  
  682.      22 Fox Den Rd., (Summer)`
  683.      Hollis, NH 03049`
  684.      (603) 465-7857`           
  685.  
  686.      144 13th St. East,  (Winter)`
  687.      Tierra Verde, FL 33715`
  688.      (813) 867-3030`
  689. -------
  690. \docend
  691.  
  692.  
  693.