<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="/">
  <html>
  <body>
    <xsl:for-each select="spotlights/spotlight">
      <b>
      <xsl:value-of select="title"/>
      </b><br />
	  <xsl:value-of select="body"/>
	  <br />
			<a>
			<xsl:attribute name="href"><xsl:value-of select="link"/></xsl:attribute>
			<xsl:value-of select="linkname"/>
			</a><br />
      <br /><hr />
    </xsl:for-each>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>
