<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<table id="tblLink" border="0" bgcolor="#8B0000" cellspacing="0" cellpadding="0">
<tr>
<xsl:for-each select="records/hlinks">
<xsl:for-each select="*">
<xsl:choose>
<xsl:when match=".[@addr != '' ]">
<td onclick="onJump();" class="SMALLWHITE" id="link" style="cursor:hand;font-weight:bold" >
<xsl:attribute name="addr"><xsl:value-of select="./@addr"/></xsl:attribute>
<xsl:attribute name="logo"><xsl:value-of select="./@logo"/></xsl:attribute>
<xsl:attribute name="links"><xsl:value-of select="./@links"/></xsl:attribute>
<xsl:value-of select="." /></td>
</xsl:when>
<xsl:otherwise>
<td  class="SMALLWHITE" id="link" style="cursor:hand;font-weight:bold" >
<a class="WH"><xsl:attribute name="href"><xsl:value-of select="./@url"/></xsl:attribute><xsl:value-of select="." /></a></td>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:for-each>
</tr>
</table>
</xsl:template>
</xsl:stylesheet>