I can't get fields to load on this website. I have used similar script on other websites and it works fine, but this one won't load. My script is below. The section with the **** around it is the section that keeps erroring out (the **** are not in my real script). If I can get the username to go in I am confident I can get everything else to work. Any help would be appreciated!

Sub Macro1()
'
' Macro1 Macro
'
Dim item As String
Dim Name As Object


Set IE = CreateObject("internetexplorer.application")

IE.Top = 0
IE.Left = 0
IE.Width = 800
IE.Height = 600
IE.AddressBar = 0
IE.StatusBar = 0
IE.Toolbar = 0
IE.Visible = True


IE.Navigate2 ("http://jdejas2:8082/jde/E1Menu.maf")

Do While IE.ReadyState <> READYSTATE_COMPLETE
DoEvents
Loop

***** IE.document.getElementById("User").Value = "item" *****

Do While IE.ReadyState <> READYSTATE_COMPLETE
DoEvents
Loop
'
End Sub