<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<html>
        <body>
              <table border="2" bgcolor="#3366cc">
                    <tr>
                          <th>Title</th>
                          <th>Artist</th>
                    </tr>
                    <xsl:for-each select="catalog/cd">
                    <tr>
                          <td><xsl:value-of select="title"/></td>
                                <xsl:choose>
                                     <xsl:when match=".[artist='John Paul Young']">
                          <td bgcolor="red"> <xsl:value-of select="artist"/></td>
                                     </xsl:when>
                                <xsl:otherwise>
                          <td><xsl:value-of select="artist"/></td>
                                </xsl:otherwise>
                                </xsl:choose>
                     </tr>
                     </xsl:for-each>
              </table>
        </body>
</html>
</xsl:template>
</xsl:stylesheet>
