Imports an xml file using IE specific <xml> tag. It then parses the xml file and prints
the node name and its value if there is any.
support@webapplications.com

Print Node Names and Node Values   IE only
      <?xml version="1.0" encoding="UTF-8"?>
        <employees>
        	<employee>
        		<name>Name</name>
        		<job>Job</job>
        		<department>Department</department>
        		<cubicle>Cubicle</cubicle>
        	</employee>
        
        	<employee>
        		<name>Joe</name>
        		<job>Programmer</job>
        		<department>Engineering</department>
        		<cubicle>5E</cubicle>
        	</employee>
          
            <employee>
        		<name>Jane</name>
        		<job>Desigmer</job>
        		<department>Architecture</department>
        		<cubicle>12A</cubicle>
        	</employee>
        </employees>