Hi jtrimb,
You could bookmark the 1st & 2nd pages, then use REF fields to replicate
them, either before or after your 3rd page. Of course, this results in your
document actually having sets of the 1st & 2nd pages.
Another way would be to use a macro to control the document's printing, but
that would only work reliably if the macro was embedded in your merged
document and it intercepted the standard Print process.
Alternatively, if you're using a postscript printer, you could embed PRINT
fields in your document to control the number of copies. For example, the
following field will force the printing of 3 copies of all pages starting
with the page the field is on:
{PRINT \p page "/#copies 3 def"}
Put that field on your document's first page of your mailmerge template and
that'll get the 3 copies going. For your last page, simply put:
{PRINT \p page "/#copies 1 def"}
anywhere on that page.
Note that the field braces (i.e. '{ }') must be created in pairs via
Ctrl-F9.
Cheers