Try this:
To insert a word file as a hyperlink (ie ... just list the path that the user can click on), create an additional bookmark (I called mine InsertedDoc), end your With statement after your third item, and do this:
strInsertDocumentPath = Forms![frmEmployeeHome]![InsertDocument]
Wrd.Selection.GoTo What:=wdGoToBookmark, Name:="InsertedDoc"
Wrd.ActiveDocument.Bookmarks.Item("InsertedDoc").Range.Hyperlinks.Add Anchor:=Wrd.Selection.Range, Address:= _
strInsertDocumentPath,SubAddress:="", ScreenTip:="", TextToDisplay:=strInsertDocumentPath
To actually insert the contents of the file, use this code instead:
Wrd.Selection.GoTo What:=wdGoToBookmark, Name:="InsertedDoc"
Wrd.ActiveDocument.Bookmarks.Item("InsertedDoc").Range.InsertFile FileName:=strInsertDocumentPath
To save the document as a different file name that included a password, do this:
strFinalDocumentName = Forms![frmEmployeeHome]![FinalDocument]
strFinalDocumentPassword = Forms![frmEmployeeHome]![FinalDocumentPassword]
Wrd.ActiveDocument.SaveAs FileName:=strFinalDocumentName, FileFormat:= _
wdFormatDocument, WritePassword:=strFinalDocumentPassword
This should do exactly what you want.