<?xml version="1.0" encoding="windows-1252" standalone="yes" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" indent="yes" omit-xml-declaration="no"/> 

<xsl:template match="InfoStreamResults">
<xsl:apply-templates select="Article[position() &lt; '16']"/>
</xsl:template>

<xsl:template match="Article">

<A>
<xsl:attribute name="HREF">ItemPage.asp?ItemID=<xsl:value-of select="@ID"/></xsl:attribute>
<xsl:attribute name="class">links</xsl:attribute>
<B><xsl:value-of select="Heading"/></B>&#160;<xsl:value-of select="Date"/>
</A>
<p></p>
</xsl:template>


</xsl:stylesheet> 
