cópia xslt de todos os nós na variável

Como alguém pode atribuir à variável uma cópia de outra variável que contém um conjunto de nós? Aqui está o meu código:

    <xsl:variable name="btchs" select="$idoc/E1EDL20/E1EDL24[./HIPOS != 0]"></xsl:variable>
    <xsl:variable name="lines" select="$idoc/E1EDL20/E1EDL24[./HIPOS = 0]"></xsl:variable>
    <xsl:variable name="cnt" select="count($btchs)"></xsl:variable>
    <xsl:variable name="blines">
        <xsl:choose>
            <xsl:when test="$cnt=0">
                Here I want to make a copy all nodes of $lines variable
            </xsl:when>
            <xsl:otherwise>
                Here I want to make a copy all nodes of $btchs variable             
            </xsl:otherwise>
        </xsl:choose>
    </xsl:variable>

Eu defino outra variável porque mais tarde é usada como para cada contador de loop.

    <xsl:for-each select="$blines">
    ...
    </xsl:for-each> 

questionAnswers(2)

yourAnswerToTheQuestion