<?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="document">
<html>
<body>
	<xsl:apply-templates select="Category">
		<xsl:with-param name="test">
			YO
		</xsl:with-param>
	</xsl:apply-templates>	
<!--
	<xsl:call-template name="writeCat">
		<xsl:with-param name="test">
			YO
		</xsl:with-param>
	</xsl:call-template>	
-->
</body>
</html>
</xsl:template>

<xsl:template match="Article">
	<xsl:value-of select="Title"/>
	<br/>
	<xsl:value-of select="$test"/>
</xsl:template>
<!--
<xsl:template name="writeCat">
	<xsl:value-of select="Category/Name"/>
	<br/>
	<xsl:value-of select="$test"/>
</xsl:template>
-->
</xsl:stylesheet><!-- Stylus Studio meta-information - (c)1998-2001 eXcelon Corp.
<metaInformation>
<scenarios ><scenario default="yes" name="Scenario1" userelativepaths="yes" url="file://C:\Documents and Settings\rex\Desktop\Xceleon\xcelon.test.xml" htmlbaseurl="" processortype="internal" commandline="" additionalpath="" additionalclasspath="" postprocessortype="none" postprocesscommandline="" postprocessadditionalpath="" postprocessgeneratedext=""/></scenarios><MapperInfo  srcSchemaPath="" srcSchemaRoot="" srcSchemaPathIsRelative="yes" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" />
</metaInformation>
-->
