<!--                                                                  -->
<!--  Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved     -->
<!--                                                                  -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:dyn="http://exslt.org/dynamic" extension-element-prefixes="dyn">
    <xsl:output method="html" indent="no" doctype-system="http://www.w3.org/TR/html4/strict.dtd" doctype-public="-//W3C//DTD HTML 4.01//EN" encoding="utf-8" />

    <xsl:include href="/app/tools/rps/templates/global.xsl" />

    <xsl:template name="pickLayout">
      <xsl:choose>
        <xsl:when test="$cmd = 'history'">
          <xsl:call-template name="historyLayout" />
        </xsl:when>
        <xsl:otherwise>
          <xsl:call-template name="defaultLayout" />
        </xsl:otherwise>
      </xsl:choose>
    </xsl:template>

    <xsl:template name="defaultLayout">
      <div class="section">
        <p/><br/>
        <h2>Payee Portal Current Statement coming soon!</h2><br/>
        <p/><br/>
      </div>
    </xsl:template>

    <xsl:template name="historyLayout">
      <div class="section">
        <p/><br/>
        <h2>Payee Portal History coming soon!</h2><br/>
        <p/><br/>
      </div>
    </xsl:template>


</xsl:stylesheet>
