<?xml version='1.0'?>
<!--Copyright 1999-2000 Intuit Inc. All rights reserved. Unauthorized duplication is a violation of applicable law.-->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">

<xsl:template><xsl:apply-templates/></xsl:template>

<xsl:template match="table/rows/row/links">
<TABLE cellspacing="8">

<xsl:apply-templates/>

</TABLE>
</xsl:template>

<xsl:template match="link">
  <tr>
  	<td class="data">	
		<xsl:if test="./icon">
		<a><xsl:attribute name="href"><xsl:value-of select="command"/></xsl:attribute>
		<img border="0"><xsl:attribute name="src"><xsl:value-of select="icon"/></xsl:attribute></img></a>
		</xsl:if>
	</td>
	<td class="data">
		<a><xsl:attribute name="href"><xsl:value-of select="command"/></xsl:attribute>
		<xsl:value-of select="linktext"/></a>
  	</td>
  	<td><img src="images/blank.gif" width="1" height="1"/></td>
 </tr>
</xsl:template>

<xsl:template match="separator">
<tr><td colspan="2"><hr color = "#99CC99" style="ridge"/></td></tr>
</xsl:template>

</xsl:stylesheet>

