<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
  <html>
  <body>
    <h2><p align="center">NEWLY ADDED</p></h2>
  <body style="background-color:#F0F8FF"></body>
    <table border="1" bgcolor="LIGHTCYAN" align="center">
      <tr bgcolor="DEEPSKYBLUE" align="center">
        <th><big><font color="AZURE">Title</font></big></th>
	<th><big><font color="AZURE">Genre</font></big></th>
	<th><big><font color="AZURE">Rating</font></big></th>
        <th><big><font color="AZURE">Rental Price</font></big></th>
	<th><big><font color="AZURE">Purchase Price</font></big></th>
      </tr>
      <xsl:for-each select="MOVIES/DVD">
      <xsl:sort select="GENRE"/>
      <tr>
        <td><xsl:value-of select="TITLE"/></td>
	<td><xsl:value-of select="GENRE"/></td>
	<td><xsl:value-of select="MPAARATING"/></td>
	<td><xsl:value-of select="RENTALPRICE"/></td>
        <td><xsl:value-of select="PURCHASEPRICE"/></td>
      </tr>
      </xsl:for-each>
    </table>
  </body>
</html>
</xsl:template></xsl:stylesheet>