Hey there,
This thought just came to mind and simpler than what I was thinking earlier.
If you plase a CommandButton on the document and put this code within its
"click" event that works pretty nicely as well.
*********
Public Sub CommandButton1_Click()
ThisDocument.FollowHyperlink "http:\\
www.nascar.com", , True, False
End Sub
**********
The "True" is for creating a new window and the "False" is for adding the
url to history. That's your call for those two options.
The word, "ThisDocument" can be replaced with "Me" as well.