function loadTreeView()
dim xmlDoc, output
set xmlDoc = server.createobject("Msxml2.DOMDocument")
xmlDoc.async = False
xmlDoc.load(server.mappath("../../Web/TreeView.xml"))
xmlDoc.setProperty "SelectionLanguage", "XPath"
'yourCode
set xmlDoc = nothing
loadTreeView = output
end function