<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="client"/>

<xsl:template match="/">
<html>
<body>
<xsl:apply-templates/>

<a href="client_form.html">Back to selection list</a>

</body>
</html>
</xsl:template>

<xsl:template match="help">
	<xsl:apply-templates/>
</xsl:template>

<xsl:template match="topic">
<xsl:choose>
<xsl:when test="@client = 'all'">
<xsl:apply-templates/>
</xsl:when>
<xsl:when test="contains(@client,$client)">
<xsl:apply-templates/>
</xsl:when>
<xsl:otherwise></xsl:otherwise>
</xsl:choose>
</xsl:template>

<xsl:template match="title">
<h1><xsl:apply-templates/></h1>
</xsl:template>

<xsl:template match="para">
<p><xsl:apply-templates/></p>
</xsl:template>

</xsl:stylesheet>