i'm currently learning all about the great wonders of the xml dom... but why the hell won't this code work?!?!

Code:
<%

Set objXMLDoc = Server.CreateObject("Microsoft.XMLDOM")
objXMLDoc.Load("note.xml")
objXMLDoc.async=false

Response.Write objXMLDoc.documentElement.nodeName

For Each objNode in objXMLDoc.documentElement.childNodes
    ' do whatever
Next

Set objXMLDoc = Nothing

%>
i always get an "object required" error...

thanks in advance!