<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="countArtists" select="1"/>
	<xsl:template match="NewDataSet">	
	
		<xsl:for-each select="artists">

					<tr>
					<td width="30" align="left" bgcolor="#EEEEEE">
						<xsl:value-of select="$countArtists" />
					</td>
					<td width="200" align="left" bgcolor="#EEEEEE">
						<A href="ArtistGallery.aspx?Artist_ID={id}">
							<xsl:value-of select="user_surname" />
							<xsl:text>, </xsl:text>
							<xsl:value-of select="user_firstname" />
						</A>
					</td>
					<td bgcolor="#EEEEEE">
						<xsl:value-of select="user_country" />					
					</td>
					<td bgcolor="#EEEEEE">
						<xsl:value-of select="artist_classification" />					
					</td>
				</tr>
				<tr>
					<td></td>
					<td colspan="3">
<br/>
						<em><xsl:value-of select="artist_statement" /></em>
						<br/>	<br/>			
					</td>
				</tr>
				
				
		<xsl:variable name="countArtists" select="$countArtists+1"/>
		</xsl:for-each>
		
	</xsl:template>
</xsl:stylesheet>
