Im not expecting any structure ... the structure is user-defined, for example this sequence of calls:

$= WriteXmlValue($xml, "korg/shawn/number", 119)
$= WriteXmlValue($xml, "korg/shawn/lastname", "tassie")

will generate XML that looks like this:

Code:

<korg>
<shawn>
<number>119</number>
<lastname>tassie</lastname>
</shawn>
</korg>



-Shawn