<html>
  <head>
    <title>dozenten-traverse.html</title>
  </head>
  <body bgcolor="dddddd">
    <script type="text/vbscript">
      set xmlDoc=CreateObject("Microsoft.XMLDOM")
      xmlDoc.async="false"
      xmlDoc.load("dozenten.xml")
      document.write("<h1>Traversieren der XML Knoten</h1>")
      for each x in xmlDoc.documentElement.childNodes
        document.write("<b>" & x.nodename & "</b>")
        document.write(": ")
        document.write(x.text)
        document.write("<br><br>")
      next
    </script>
  </body>
</html>