<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

<!-- Enterprise template -->
<!--Bevan May. 2004
	stored proc only returns "tags": PARID, JUR, OWNER, FULLADD, ROLL, NBHD, CITYNAME 
-->

<xsl:template match="/">

	<table width="100%" border="0" cellspacing="0" cellpadding="0">
		<!--
		<xsl:attribute name="border">0</xsl:attribute>
		<xsl:attribute name="cellspacing">5</xsl:attribute>
		<xsl:attribute name="cellpadding">0</xsl:attribute>
		-->
		<!-- Apply template for the row's data -->
		<xsl:apply-templates select="ROWS/ROW" /> 
	</table>
</xsl:template>

<!-- Create display HTML for each row -->
<xsl:template match="ROW">
	<tr class="DataletHeaderTop" height="1">
		<td class="DataletHeaderTop" width="50%" align="left" valign="top" colspan="2" nowrap="1">PARID:&#160;<xsl:value-of select='PARID'/> </td>
		<td class="DataletHeaderTop" width="50%" align="right" valign="top" colspan="2">JUR:&#160;<xsl:value-of select='JUR'/> </td>		
	</tr>
	<tr height="1" class="BannerTabs">
		<td colspan="4" height="1" valign="top" width="100%"></td>
	</tr> <!--line -->	
	<tr class="DataletHeaderTop" height="1">
    <td class="DataletHeaderTop" width="50%" align="left" valign="top" colspan="2" nowrap="1">
      NBHD:&#160;<xsl:value-of select='NBHD'/>
    </td>
    <td class="DataletHeaderTop" width="50%" align="right" valign="top" colspan="2">
      ROLL:&#160;<xsl:value-of select='ROLL'/>
    </td>
  </tr>
	<tr class="DataletHeaderTop" height="1">
		<td class="DataletHeaderBottom" width="50%" align="left" valign="top" colspan="2"><xsl:value-of select='OWNER'/> </td>
		<td class="DataletHeaderBottom" width="50%" align="right" valign="top" colspan="2"><xsl:value-of select='FULLADD'/> </td>
	</tr>
	<tr  >
		<td colspan="4" height="10" valign="top" width="100%"></td>
	</tr> <!--blank line -->
</xsl:template>

</xsl:stylesheet> 