result.xsl
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<!-- Added <A HREF> around the text in the MenuBarItem -->
<xsl:template match="/">
<xsl:element name="META">
<xsl:attribute name="HTTP-EQUIV">Content-Type</xsl:attribute>
<xsl:attribute name="content">text/html;charset=<xsl:value-of select="//UIElement/@CHARSET" /></xsl:attribute>
</xsl:element>
<TABLE CLASS="table" FRAME="box" RULES="none" >
<TR>
<xsl:for-each select=".//LABEL">
<TD><xsl:attribute name="TITLE"><xsl:value-of select="@VALUE" /></xsl:attribute>
<LABEL >
<xsl:attribute name="ID"><xsl:value-of select="@ID" /></xsl:attribute>
<xsl:attribute name="NAME"><xsl:value-of select="@NAME" /></xsl:attribute>
<xsl:attribute name="VALUE"> <xsl:value-of select="@VALUE" /></xsl:attribute>
<xsl:value-of select="@TEXT"/>
<xsl:if test="context()[not(end())]">:
</xsl:if>
</LABEL>
</TD>
</xsl:for-each>
</TR>
</TABLE>
</xsl:template>
</xsl:stylesheet>