You can force Word to display (or not to display) whatever toolbars you like
by using auto macros. http://www.gmayor.com/installing_macro.htm The code
required could be similar to:
Sub AutoNew()
CommandBars("Reviewing").Visible = False
CommandBars("Drawing").Visible = False
CommandBars("Forms").Visible = False
End Sub
Sub AutoExec()
CommandBars("Reviewing").Visible = False
CommandBars("Drawing").Visible = False
CommandBars("Forms").Visible = False
CommandBars("Mail Merge").Visible = False
End Sub
Toolbars provided by add-ins may need a different approach - see
http://www.gmayor.com/lose_that_adobe_acrobat_toolbar.htm

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Hi
> On opening word 2003 the toolbars are not the standard and formatting
[quoted text clipped - 6 lines]
> If not does anyone recall the VBA script
> Thanks