<?xml version="1.0" ?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" indent="yes" encoding="us-ascii" /> 

<xsl:template match="ProductInfo">

 <TABLE WIDTH="130" CELLSPACING="0" CELLPADDING="1" BGCOLOR="#0000FF" ALIGN="left">
  <TR><TD><TABLE CELLPADDING="2" BGCOLOR="#FFFFFF">
  <TR><TD><DIV class="realsmall">
  <CENTER>
  Related Books from<BR/>
  <A HREF="http://www.amazon.com">
  <IMG src="http://www.windley.com/images/amazon-logo-no-border.gif" border="0" /></A>
  </CENTER></DIV>
  <TABLE CELLPADDING="0" CELLSPACING="5" BORDER="0">
 <xsl:apply-templates select="Details|ErrorMsg" /> 
  </TABLE></TD></TR>
 </TABLE></TD></TR>
 </TABLE>
</xsl:template>


<xsl:template match="Details">
 <TR><TD VALIGN="top" ALIGN="right"> <DIV class="realsmall">-</DIV></TD>
  <TD> <DIV class="realsmall">
  <A><xsl:attribute name="href"><xsl:value-of
select="@url"/></xsl:attribute><xsl:value-of select="ProductName" /> </A>
 <EM>
  (<xsl:value-of select="Authors/Author" />)
<!--   <xsl:apply-templates select="Authors"/> -->
 </EM></DIV></TD></TR>
</xsl:template>

<xsl:template match="ErrorMsg">
 <B><xsl:value-of select="." /> </B>
</xsl:template>


<xsl:template match="Authors">
  <xsl:apply-templates select="Author"/> 
</xsl:template>

<xsl:template match="Author">
 <xsl:value-of select="." /><xsl:text> </xsl:text>
</xsl:template>

</xsl:stylesheet>




