<?xml version='1.0'?>
<?xml-stylesheet type="text/xsl" href="xtree.xsl" ?>
<!--
xtree tag____________
target: is base target 
-->
<xtree target="right">
	<!--
	node tag_________________________________
	name:   is the text displayed in the node
	url: 	is the link of the node
	target: is the target frame or the url (url must be specified)
	id:		id for node (should be unique on tree)
	-->
	<node name="Root" opened="1" id="211">
		<node name="Sub1" opened="0" id="2131">
			<!--
			document tag___________________
			url: 	is the link of the node
			target: is the target frame of the url (url must be specified)
			text(): is the text displayed in the document item
			-->
			<document target="_blank" url="testitem.htm">Document0 (will open in a blank page)</document>
			<document url="testitem.htm">Document01 (will open in default right frame)</document>
			<node name="Sub11" opened="0" id="2123">
				<node name="Sub111" opened="0" id="11">
					<document url="testitem.htm">Document</document>
				</node>
			</node>
		</node>
		<node name="Sub2" opened="1" id="44">
			<node name="Sub21" url="testlevel.htm" opened="0" id="3423">
				<document target="document">Document2</document>
			</node>
		</node>
	</node>
</xtree>
