2900402
2900402
                xmlns="http://www.w3.org/1999/xhtml"
2900402
                version="1.0">
2900402
2900402
<xsl:output method="xml" doctype-system="location.dtd"/>
2900402
<xsl:template match="@*|node()">
2900402
  <xsl:copy>
2900402
    <xsl:apply-templates select="@*|node()"/>
2900402
  </xsl:copy>
2900402
</xsl:template>
2900402
<xsl:template match="name">
2900402
  <xsl:choose>
2900402
    <xsl:when test="@xml:lang">
2900402
      <xsl:variable name="ctext" select="../name[1]"/>
2900402
      <xsl:variable name="thistext" select="."/>
2900402
      <xsl:if test="$ctext != $thistext">
2900402
        <xsl:copy>
2900402
          <xsl:apply-templates select="@*|node()"/>
2900402
        </xsl:copy>
2900402
      </xsl:if>
2900402
    </xsl:when>
2900402
    <xsl:otherwise>
2900402
      <xsl:copy>
2900402
        <xsl:apply-templates select="@*|node()"/>
2900402
      </xsl:copy>
2900402
    </xsl:otherwise>
2900402
  </xsl:choose>
2900402
</xsl:template>
2900402
2900402
</xsl:stylesheet>