<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<!-- xsl:comment>(c) 2000 Intuit Inc.  All Rights Reserved</xsl:comment -->

<!-- xsl:comment> ***** Document ***** </xsl:comment -->



<xsl:template match="UpdateInfo">
        <table width="100%" border="0" cellspacing="0">

          <tr>
  			<TD width="10"/>
           <td width="30%" align="right"></td>
            <td><font face="MS Sans Serif" size="1"><b>D&amp;B Database<xsl:text>&#xA0;&#xA0;&#xA0;&#xA0;</xsl:text></b></font></td>
            <td><font face="MS Sans Serif" size="1"><b>QuickBooks Customer Record
              </b></font></td>
          </tr>

		  <tr>
 			<TD width="10"/>
			<TD colspan="3" bgcolor="c2e0c2" height="2pt" />
          </tr>

         <tr>
  			<TD width="10"/>
           <td width="30%" align="left" valign="top"><font face="MS Sans Serif" size="1"><b>Customer
              Name</b><xsl:text>&#xA0;&#xA0;&#xA0;&#xA0;</xsl:text></font></td>
            <td></td>
            <td><font face="MS Sans Serif" size="1"><xsl:value-of select="QBCompanyInfo/CustomerName/."/></font></td>
          </tr>

		  <tr>
 			<TD width="10"/>
			<TD colspan="3" bgcolor="c2e0c2" height="2pt" />
          </tr>

         <tr>
  			<TD width="10"/>
           <td width="30%" align="left" valign="top"><font face="MS Sans Serif" size="1"><b>Company
              Name</b><xsl:text>&#xA0;&#xA0;&#xA0;&#xA0;</xsl:text></font></td>
            <td><font face="MS Sans Serif" size="1"><xsl:value-of select="DNBCompanyInfo/CompanyName/."/></font></td>	
            <td><font face="MS Sans Serif" size="1"><xsl:value-of select="QBCompanyInfo/CompanyName/."/></font></td>
          </tr>

		  <tr>
 			<TD width="10"/>
			<TD colspan="3" bgcolor="c2e0c2" height="2pt" />
          </tr>

          <tr>
 			<TD width="10"/>
            <td width="30%" align="left" valign="top"><font face="MS Sans Serif" size="1"><b>Billing
              Address</b><xsl:text>&#xA0;&#xA0;&#xA0;&#xA0;</xsl:text></font></td>
            <xsl:apply-templates select="DNBCompanyInfo/Address"/>	
            <xsl:apply-templates select="QBCompanyInfo/Address"/>	
          </tr>

		  <tr>
 			<TD width="10"/>
			<TD colspan="3" bgcolor="c2e0c2" height="2pt" />
          </tr>

          <tr>
 			<TD width="10"/>
            <td width="30%" align="left" valign="top"><font face="MS Sans Serif" size="1"><b>Phone
              Number</b><xsl:text>&#xA0;&#xA0;&#xA0;&#xA0;</xsl:text></font></td>
				<td><font face="MS Sans Serif" size="1"><xsl:value-of select="DNBCompanyInfo/Phone/."/></font></td>
            <td><font face="MS Sans Serif" size="1"><xsl:value-of select="QBCompanyInfo/Phone/."/></font></td>
          </tr>

		  <tr>
 			<TD width="10"/>
			<TD colspan="3" bgcolor="c2e0c2" height="2pt" />
          </tr>

       </table>


</xsl:template>


<xsl:template match="DNBCompanyInfo/Address">
	<td><font face="MS Sans Serif" size="1">
		<xsl:value-of select="Street"/><br/>
		<xsl:value-of select="City"/>,<xsl:text>&#xA0;</xsl:text><xsl:value-of select="State"/><xsl:text>&#xA0;</xsl:text><xsl:value-of select="Zip"/>
	</font></td>
</xsl:template>

<xsl:template match="QBCompanyInfo/Address">
	<td><font face="MS Sans Serif" size="1">
		<xsl:value-of select="Street"/><br/>
		<xsl:value-of select="City"/>,<xsl:text>&#xA0;</xsl:text><xsl:value-of select="State"/><xsl:text>&#xA0;</xsl:text><xsl:value-of select="Zip"/>
	</font></td>
</xsl:template>


</xsl:stylesheet>