<?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:param name="ItemID"/>
<xsl:template match="InfoStreamResults">
<xsl:apply-templates select="Article[@ID=$ItemID]"/>
</xsl:template>


<xsl:template match="Article">
<TABLE width="440" border="0" cellpadding="0" cellspacing="0">
<TR><TD>
<B><xsl:value-of select="Heading"/></B><BR/><xsl:value-of select="Date"/>
</TD></TR>
<TR><TD>
<BR/><BR/>
<xsl:value-of disable-output-escaping="yes" select="Contents" /><BR/><Br/>
<xsl:value-of select="parent::node()/@Copyright"/><BR/><BR/>
</TD></TR>

<TR><TD>
<a href="javascript:history.back();">Back</a>
</TD></TR>
</TABLE>

</xsl:template>


</xsl:stylesheet>

