<xsl:apply-templates select="OBX[1]"/>
<xsl:apply-templates select="OBX[2]"/>
<xsl:template match="OBX[1]">
<!-- Gewicht -->
<xsl:call-template name="attr">
<xsl:with-param name="tag" select="'00101030'"/>
<xsl:with-param name="vr" select="'CS'"/>
<xsl:with-param name="val" select="string(field[5]/text())"/>
</xsl:call-template>
</xsl:template>
<xsl:template match="OBX[2]">
<!-- Gewicht -->
<xsl:call-template name="attr">
<xsl:with-param name="tag" select="'00101020'"/>
<xsl:with-param name="vr" select="'CS'"/>
<xsl:with-param name="val" select="string(field[5]/text())"/>
</xsl:call-template>
</xsl:template>