<xsl:stylesheet version="1.0" 
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="document">
    <navlinks>
    <b>Other Pages</b><br/>
    <xsl:apply-templates/>
    </navlinks>
</xsl:template>


<xsl:template match="body">
    <xsl:apply-templates/>
</xsl:template>
<xsl:template match="p">
    <xsl:apply-templates/>
</xsl:template>
<xsl:template match="h3">
    <xsl:copy-of select="."/>
</xsl:template>
<xsl:template match="h4">
    <xsl:copy-of select="."/>
</xsl:template>
<xsl:template match="img">
    <xsl:copy-of select="."/>
</xsl:template>
<xsl:template match="i">
    <xsl:copy-of select="."/>
</xsl:template>
<xsl:template match="title">
</xsl:template>
<xsl:template match="a">
    <xsl:copy-of select="."/>
</xsl:template>
<xsl:template match="br">
    <xsl:copy-of select="."/>
</xsl:template>
<xsl:template match="ul">
    <ul>
    <xsl:apply-templates/>
    </ul>
</xsl:template>
<xsl:template match="li">
    <li>
    <xsl:apply-templates/>
    </li>
</xsl:template>
<xsl:template match="font">
    <p>
    <xsl:copy-of select="."/>
    </p>
</xsl:template>

<xsl:template match="mapsection">
    <h4><xsl:value-of select="mapsectiontitle"/></h4>
    <xsl:apply-templates select="pageref|dochref"/>
</xsl:template>
<xsl:template match="pageref">
    <a href="{@base}.html"><xsl:value-of select="."/></a><br/>
</xsl:template>
<xsl:template match="dochref">
    <a href="javascript:show('{@url}')"><xsl:value-of select="."/></a><br/>
</xsl:template>
<xsl:template match="mapsubsection">
</xsl:template>
</xsl:stylesheet>

