Private Sub Document_New()
Dim bkm As Bookmark
Dim rngTemp As Range
Dim strTemp As String
Set rngTemp = ActiveDocument.Range(Start:=0, End:=0)
'Set Company Name
'MsgBox "begin Set Company Name"
ActiveDocument.MailMerge.Fields.AddSet Range:=rngTemp, _
Name:="companyName", ValueText:=InputBox("Please enter the Company Name:", "Company Name")
Selection.Collapse Direction:=wdCollapseEnd
'Set Contact Name
'MsgBox "begin Set Contact Name"
ActiveDocument.MailMerge.Fields.AddSet Range:=rngTemp, _
Name:="contactName", ValueText:=InputBox("Please enter the Contact Name:", "Contact Name")
Selection.Collapse Direction:=wdCollapseEnd
'Set Contact Title
'MsgBox "begin Set Contact Title"
ActiveDocument.MailMerge.Fields.AddSet Range:=rngTemp, _
Name:="contactTitle", ValueText:=InputBox("Please enter the Contact's Title:", "Contact Title")
Selection.Collapse Direction:=wdCollapseEnd
'Set Number Of Users
'MsgBox "begin Set Num Users"
ActiveDocument.MailMerge.Fields.AddSet Range:=rngTemp, _
Name:="numberUsers", ValueText:=InputBox("Please enter the Number of Users:", "# of Users")
Selection.Collapse Direction:=wdCollapseEnd
'Set Fixed Price
'MsgBox "begin Set Fixed Price"
ActiveDocument.MailMerge.Fields.AddSet Range:=rngTemp, _
Name:="fixedPrice", ValueText:=InputBox("Please enter the fixed price of the deal:" _
& Chr(13) & Chr(10) & "i.e. 15000", "Deal Price", "15000")
Selection.Collapse Direction:=wdCollapseEnd
'Set License Price
'MsgBox "begin Set License Price"
ActiveDocument.MailMerge.Fields.AddSet Range:=rngTemp, _
Name:="licensePrice", ValueText:=InputBox("Please enter the price of each license:" _
& Chr(13) & Chr(10) & "i.e. 60", "License Price", "60")
Selection.Collapse Direction:=wdCollapseEnd
'Set Support Price
'MsgBox "begin Set Support Price"
ActiveDocument.MailMerge.Fields.AddSet Range:=rngTemp, _
Name:="supportPrice", ValueText:=InputBox("Please enter the price of support:" _
& Chr(13) & Chr(10) & "i.e. 15", "License Price", "15")
Selection.Collapse Direction:=wdCollapseEnd
'Set Kickoff date
'MsgBox "begin Set KickOff Date"
ActiveDocument.MailMerge.Fields.AddSet Range:=rngTemp, _
Name:="kickoffDate", ValueText:=InputBox("Please enter the estimated Kick-Off Date:" _
& Chr(13) & Chr(10) & "i.e. January 1, 2004", "Kickoff Date", "January 1, 2004")
Selection.Collapse Direction:=wdCollapseEnd
ActiveDocument.Fields.Update
End Sub