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

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

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


<xsl:variable name="securl">section[@order='<xsl:value-of select="$section"/>']</xsl:variable>

<xsl:variable name="action">/client/view.epl</xsl:variable>


<!-- templates -->

<!-- trademark template -->
<xsl:template match="tm">
  <span class="trademark">
		<xsl:value-of select="."/><font size="-1"><sup>TM</sup></font>
	</span>
</xsl:template>

<!-- wording template -->
<xsl:template match="paragraph"><xsl:value-of select="."/>
<xsl:text>

</xsl:text>

</xsl:template>

<xsl:template match="/manual">

<!-- debug
<xsl:value-of select="$section"/>
<xsl:value-of select="$securl"/>
-->



<!-- section -->
<xsl:for-each select="section[@order=$section]">


<table width="95%">
<tr>
	<th align="left" class="sectionhead">
		<table width="100%">
			<tr>
			<th align="left" class="sectionhead">
				Section <xsl:value-of select="$section"/><br/>
			</th>
			<td align="right" rowspan="3">
			 <a>
				<xsl:attribute name="href">#</xsl:attribute>
				<xsl:attribute name="onClick">window.close();return false;</xsl:attribute>Close</a>
			</td>
			</tr>
			<tr>
				<th align="left" class="sectionhead"><xsl:value-of select="title"/>
			</th>
			</tr>
			<tr>
			  <td align="left" class="sectiondesc">
			    <xsl:copy-of select="desc"/>
			  </td>
			</tr>
		</table>
	</th>
</tr>
<tr>
	<td align="left" class="sectionconj">
		<xsl:apply-templates select="conjunction"/>
	</td>
</tr>
<tr><td align="left" class="sectioncontent">
<p/>

<p>				<xsl:for-each select="roadmap/paragraph">
     			<xsl:apply-templates select="."/>
    		</xsl:for-each>

</p>

</td></tr>
</table>

</xsl:for-each>


</xsl:template>



</xsl:stylesheet>
