You could try a macro like:
Code:
Sub Document_Open()
Application.ScreenUpdating = False
With ActiveDocument
.Fields.Update
.PrintPreview
.ClosePrintPreview
End With
Application.ScreenUpdating = True
End Sub
In the document template's 'ThisDocument' code module.