Image Loop

I want to loop a icon.gif (20 X 20px image) one besides the other. 
 
This is where I want to display the images
 
 
<!-- Facilities block starts here -->

<fo:block font-size="10pt" color="#333333" font-weight="bold"
space-before="15px" keep-with-next="always"> Facilities </fo:block>

<fo:block space-before="3px">

    <xsl:call-template name="facilities">

        <xsl:with-param name="node" select="."/>

    </xsl:call-template>

</fo:block>

<!-- Facilities block ends here -->

****************************************************************************
****************************************************************************
**************

<!--
****************************************************************************
**************************************************** -->

<!-- Facilities template defined starts-->

<!--
****************************************************************************
**************************************************** -->

<xsl:template name="facilities">

<xsl:param name="node"/>

<xsl:for-each select="$node/*">

<xsl:call-template name="facilitiesdetails">

<xsl:with-param name="childNode" select="."/>

</xsl:call-template>

</xsl:for-each>

</xsl:template>

<!--
****************************************************************************
**************************************************** -->

<!-- Facilities template defined ends-->

<!--
****************************************************************************
**************************************************** -->

 

<!--
****************************************************************************
**************************************************** -->

<!-- Facilities content starts here -->

<!--
****************************************************************************
**************************************************** -->

<xsl:template name="facilitiesdetails">

<xsl:param name="childNode"/>

<xsl:for-each select="$childNode/*">

<xsl:apply-templates select="FACILITIES"/>

</xsl:for-each>

</xsl:template>

<!--
****************************************************************************
**************************************************** -->

<!-- Facilities content ends here -->

<!--
****************************************************************************
**************************************************** -->

Received on Tuesday, 23 September 2003 06:03:34 UTC