chi mi aiuta a recuperare i valori di questa struttura xml

<?xml version="1.0" encoding="utf-8" ?>
<Templates imagesBasePath="fck_template/images/">

<Template title="News Generica" image="template4.gif">
<Description>Layout generico per News</Description>
<Html>
<![CDATA[]]>
</Html>
</Template>
</Templates>

i nodi title e image ci sono riuscito...trovo difficoltà con description e html... il codice usato è questo:

<%
filexml=Server.MapPath("/-site-/fcktemplates.xml")
Set objXML = Server.CreateObject("msxml2.DOMDocument.3.0")
objXML.async = false
objXML.setProperty "ServerHTTPRequest", True
objXML.validateOnParse =false
objXML.preserveWhiteSpace = false
caricoFile = objXML.Load(filexml)
If Not caricoFile Then
response.write "file non caricato"
Else
Set Nodo = objXML.getElementsByTagName("Templates")
For Each objNodi In Nodo
For Each objNodo In objNodi.childNodes
Select Case objNodo.nodeName
Case "Template"
nometemplates = objNodo.getAttribute("title")
End Select
response.write nometemplates
Next
Next
set Nodo = Nothing
End if
%>

grazie a tutti