
<!--***********************************************************************-->
<!--                                                                       -->
<!-- $Name:  $    $Revision: 1.6 $   $Date: 2004/10/18 12:03:30 $          -->
<!--                                                                       -->
<!-- Copyright 2004 Albertsons, Inc                                        -->
<!-- All Rights reserved.                                                  -->
<!--                                                                       -->
<!-- This software is the confidential and proprietary information of      -->
<!-- Albertsons, Inc. ("Confidential Information"). You shall not disclose -->
<!-- such Confidential Information and shall use it only in accordance     -->
<!-- with the terms of the license agreement you entered into with         -->
<!-- Albertsons                                                            -->
<!--                                                                       -->
<!--***********************************************************************-->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 
<xsl:output method="html" /> 
<xsl:strip-space elements="*" /> 
<xsl:template match="page"> 
<html>
<title>Marketing Sub Category RHS Template</title>
<body>
  <table width="100%">
  <!-- presentation for mktg_sub_rhs_img (image)-->  
   <tr>
    <td>
      <xsl:apply-templates select="mktg_sub_rhs_img1"/>
    </td>
   </tr>
  <!-- presentation for mktg_sub_rhs_img2 (image)-->  
   <tr>
    <td>
      <xsl:apply-templates select="mktg_sub_rhs_img2"/>
    </td>
   </tr>
  <!-- presentation for mktg_sub_rhs_seealso(image)-->  
   <tr>
    <td>
     <xsl:apply-templates select="mktg_sub_rhs_seealso"/>
    </td>
   </tr>
   <tr>
   <td>
  <!-- presentation for link-->
      <xsl:for-each select="link"> 
       <br/>
       <xsl:choose>
        <xsl:when test="mktg_sub_rhs_check='internal'">
         <xsl:choose>       
          <xsl:when test="mktg_sub_rhs_link_internal/custom!=''">
                   <xsl:apply-templates select="mktg_sub_rhs_arrow"/>
                   &#xA0;&#xA0;
                   <xsl:element name="a">
                   <xsl:attribute name="href">
                   <xsl:value-of select="mktg_sub_rhs_link_internal/custom" />
                   </xsl:attribute>
                   <xsl:value-of select="mktg_sub_rhs_link_title" />
                   </xsl:element>
          </xsl:when>
          <xsl:otherwise>
           <xsl:if test="mktg_sub_rhs_link_external!=''">
                   <xsl:apply-templates select="mktg_sub_rhs_arrow"/>
                   &#xA0;&#xA0;
                   <xsl:element name="a">
                   <xsl:attribute name="href">
                   <xsl:value-of select="mktg_sub_rhs_link_external" />
                   </xsl:attribute>
                   <xsl:value-of select="mktg_sub_rhs_link_title" />
                   </xsl:element>
           </xsl:if>
          </xsl:otherwise>
         </xsl:choose> 
        </xsl:when>
        <xsl:otherwise>
          <xsl:choose>
           <xsl:when test="mktg_sub_rhs_link_external!=''">
                   <xsl:apply-templates select="mktg_sub_rhs_arrow"/>
                   &#xA0;&#xA0;
                   <xsl:element name="a">
                   <xsl:attribute name="href">
                   <xsl:value-of select="mktg_sub_rhs_link_external" />
                   </xsl:attribute>
                   <xsl:value-of select="mktg_sub_rhs_link_title" />
                   </xsl:element>
           </xsl:when>
           <xsl:otherwise>
             <xsl:if test="mktg_sub_rhs_link_internal/custom!=''">
                   <xsl:apply-templates select="mktg_sub_rhs_arrow"/>
                   &#xA0;&#xA0;
                   <xsl:element name="a">
                   <xsl:attribute name="href">
                   <xsl:value-of select="mktg_sub_rhs_link_internal/custom" />
                   </xsl:attribute>
                   <xsl:value-of select="mktg_sub_rhs_link_title" />
                   </xsl:element>
              </xsl:if>
            </xsl:otherwise>
           </xsl:choose> 
        </xsl:otherwise>
       </xsl:choose>
      </xsl:for-each>
    </td>
   </tr>
  </table>
</body>
</html>
</xsl:template> 
<xsl:template match="mktg_sub_rhs_img1">
 <img border="0" src="{.}" />
</xsl:template>
<xsl:template match="mktg_sub_rhs_seealso">
<!-- <img border="0" src="{.}" /> -->
 <b>See also</b>
</xsl:template>
<xsl:template match="mktg_sub_rhs_arrow">
 <img border="0" src="{.}" />
</xsl:template>
<xsl:template match="mktg_sub_rhs_img2">
 <img border="0" src="{.}" />
</xsl:template>
</xsl:stylesheet>