<?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">
<UL>
<xsl:for-each select="link">
  <tr><td class="data"><li></li></td>
  <td>
	<xsl:if test=".[@online='true']">
		<img src="images/com_bolt.gif" alt="Online Content Icon" width="8" height="12"/>
	</xsl:if>
 </td><td class="data">
	<a><xsl:attribute name="href"><xsl:value-of select="command"/></xsl:attribute>
	<xsl:value-of select="linktext"/></a>
	<xsl:if test="./icon">
		<img>
		<xsl:attribute name="src"><xsl:value-of select="icon"/></xsl:attribute></img>
	</xsl:if>
  </td>
  <td><img src="images/blank.gif" alt="Nothing" width="1" height="1"/></td>
 </tr> 
</xsl:for-each>
</UL>
</TABLE><BR/>
<TABLE><TR><TD align="center"><a href="qbks://qbw:Navigator?featurearea=businessservices">Business Services Navigator</a></TD></TR></TABLE>
</xsl:template>

</xsl:stylesheet>

