<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:aws="http://webservices.amazon.com/AWSECommerceService/2004-10-04">
<xsl:output method="html" encoding="utf-8" />

  <xsl:template match="/">
    <xsl:apply-templates/>
  </xsl:template>
 
<xsl:template match="aws:Items/aws:Item">
<html>
<head></head>
<body>
  <xsl:apply-templates />
</body>
</html>
</xsl:template>


<xsl:template match="aws:Items/aws:Item">
<xsl:value-of select="ASIN" /><BR />
</xsl:template>

</xsl:stylesheet>