As the document for each recipient is in a separate section, you can use:
Dim i As Long
For i = 1 To ActiveDocument.Sections.Count
ActiveDocument.PrintOut Range:=wdPrintFromTo, From:="s" & i, To:="s" & i
Next i
to send each letter as a separate print job.

Signature
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.
Hope this helps
Doug Robbins - Word MVP
> I know how to create merge letters and print them to an ordinary printer.
>
> My problem is when I merge my 2 page letter direct to the printer, Zerox Document Centre 490 ST which is capable of stapling documents, one 2-page
letter to 10 addresses, what comes out of the printer is 10 letters stapled
together as one document, instead of what I need which is 10 letters stapled
individually.
> Does anybody know if the above is possible?