<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="client"/>
<xsl:param name="platform"/>

<xsl:template match="/">
<html>
<body>
<xsl:apply-templates/>

<a href="client2_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:choose>
		<xsl:when test="@platform = 'all'">
			<xsl:apply-templates/>
		</xsl:when>
		<xsl:when test="contains(@platform,$platform)">
			<xsl:apply-templates/>
		</xsl:when>
		<xsl:otherwise></xsl:otherwise>
	</xsl:choose>
</xsl:when>
<xsl:when test="contains(@client,$client)">
	<xsl:choose>
		<xsl:when test="@platform = 'all'">
			<xsl:apply-templates/>
		</xsl:when>
		<xsl:when test="contains(@platform,$platform)">
			<xsl:apply-templates/>
		</xsl:when>
		<xsl:otherwise></xsl:otherwise>
	</xsl:choose>
</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>