Hi, if I have the following xml structure:

<channel>
<title>ChannelTitle</title>
<link>link</link>
<description>des</description>
<item>
<title>Item1Title</title>
<link>Link1</link>
<description>des1</description>
<body xmlns="http://www.w3.org/1999/xhtml">
<h4>
<a href="http://someplace">
<img src="http://somepicture" id="myid" border="0" />
</a>
</h4>
</body>
</item>
<item>
<title>Item2Title</title>
<link>Link2</link>
<description>Link3</description>
</item>
</channel>

I want to display the entire contents of the body tag in html, so the following should be put in as html
<h4>
<a href="http://someplace">
<img src="http://somepicture" id="myid" border="0" />
</a>
</h4>

How can I do this with XSL????