The following AutoOpen macro will try to load and setup the documents to display properly. It is BEST to enable macros when asked, but not NECESSARY.

Sub AutoOpen()
ActiveDocument.ShowSpellingErrors = False
ActiveDocument.ShowGrammaticalErrors = False
With ActiveWindow
    .View.Zoom = 100
    .View.Type = wdPageView
    .DisplayVerticalRuler = False
    .DisplayRulers = False
End With
End Sub