<?xml version="1.0" encoding="ISO-8859-1"?> 

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

<!-- parameters -->
<!-- parameters -->
<xsl:param name="username" select="'username'" />

<xsl:template match="/manual">

<table width="95%">
<tr>
	<th align="left">Company</th>
	<td><xsl:value-of select="company"/></td>
</tr>
<tr><th align="left">Title</th>
	<td><xsl:value-of select="title"/></td></tr>
<tr><th align="left">Manager</th>
	<td><xsl:value-of select="manager"/></td></tr>
</table>
<p/>
<table width="95%">
<tr>
	<th align="left">Table of Contents</th>
</tr>
<td>
<ol>
<xsl:for-each select="section">
<li><a>
	<xsl:attribute name="href">view.epl?u=
		<xsl:value-of select="$username"/>&amp;s=
		<xsl:value-of select="@order"/>
	</xsl:attribute>
	<xsl:value-of select="title"/>
	</a>
</li>

</xsl:for-each>
</ol>
</td>
</table>

</xsl:template>

</xsl:stylesheet>
