[xsl] xml elements as output after xslt parsing

Subject: [xsl] xml elements as output after xslt parsing
From: sudheshna iyer <sudheshnaiyer@xxxxxxxxx>
Date: Sat, 9 Oct 2010 15:04:32 -0700 (PDT)
I want to traverse through two xmls and produce 3rd xml from xslt. I want to
see 
the xml elements instead of just the values in the output.

Input:

<?xml
version="1.0" encoding="ISO-8859-1"?>
<!-- Edited by XMLSpy. -->
<catalog>
<cd>
        <title>Empire Burlesque</title>
    </cd>
</catalog>

XSL:
<?xml
version="1.0" encoding="ISO-8859-1"?>
<!-- Edited by XMLSpy. -->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:template match="/">
<xsl:apply-templates/>  
</xsl:template>

<xsl:template match="cd">
<newCD>
<xsl:value-of select="."/>
</newCD>
</xsl:template>
</xsl:stylesheet>


Needed
Output:
<newCD>
    <title>Empire Burlesque</title>
</newCD>

Produced output:
Empire Burlesque

Current Thread