<?xml version='1.0' encoding='UTF-8'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:output method="html" encoding="windows-1250"/>

	<xsl:template match="/">
	<html><head/>
		<body>
			<xsl:apply-templates/>
		</body>
	</html>
</xsl:template>

	<xsl:template match="SampleList">
	<xsl:call-template name="SampleListHeader"/>
	<xsl:call-template name="SampleListTable"/>
</xsl:template>

	<xsl:template name="SampleListHeader">
	<xsl:value-of select="SampleHeader"/>
</xsl:template>

	<xsl:template name="SampleListTable">
	<table>
		<tbody>
			<xsl:for-each select="SampleItem">
				<xsl:call-template name="SampleListLine"/>
			</xsl:for-each>
		</tbody>
	</table>
</xsl:template>

	<xsl:template name="SampleListLine">
	<tr>
		<td>
			<xsl:value-of select="SampleList/SampleItem/ItemNo"/>
		</td>
		<td>
			<xsl:value-of select="SampleList/SampleItem/ItemName"/>
		</td>
	</tr>
</xsl:template>
</xsl:stylesheet><!-- Stylus Studio meta-information - (c)1998-2003. Sonic Software Corporation. All rights reserved.
<metaInformation>
<scenarios ><scenario default="yes" name="Scenario1" userelativepaths="yes" externalpreview="no" url="Sample1.xml" htmlbaseurl="" outputurl="" processortype="internal" profilemode="0" urlprofilexml="" commandline="" additionalpath="" additionalclasspath="" postprocessortype="none" postprocesscommandline="" postprocessadditionalpath="" postprocessgeneratedext=""/></scenarios><MapperInfo srcSchemaPath="" srcSchemaRoot="" srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no"/>
</metaInformation>
-->