<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="bgColour"></xsl:param>
<xsl:template match="NewDataSet">
<table>
<tr valign="top">
	<td valign="top" align="center" bgcolor="{bgColour}">
		<table cellspacing="0" cellpadding="0" width="660">
		<tr>
		<td valign="top">
			<xsl:for-each select="AuctionPrices">
	
				<table border="0" cellpadding="2">
				<tr>
				 <td width="200">
					<xsl:value-of select="ArtistSurname"/>
					<xsl:text>, </xsl:text>
					<xsl:value-of select="ArtistFirstName"/>
				 </td>
				 <td width="100">
					<xsl:value-of select="ArtistDate"/>			 
				 </td>
				 <td width="300">
					<xsl:value-of select="Title"/>
				 </td>
				</tr>
				</table>
			</xsl:for-each>
		</td>	
		</tr>
		</table>
	</td>
</tr>
</table>
</xsl:template>
</xsl:stylesheet>

