I need to create two separate templates that fill space. One that occupies 49 spaces and the other fills 549 spaces. I found on template that I thinks may work but I can't really tell what its doing, I'm new to xml. \[code\]<!-- Template Filler--> <xsl:template name="Filler"> <xslaram name="fillercount" select="1"/> <xsl:if test="$fillercount > 0"> <table class="tabledetails"> <tr> <td> <xsl:value-of select="translate(' ', ' ', ' ')"/> </td> </tr> </table> <xsl:call-template name="Filler"> <xsl:with-param name="fillercount" select="$fillercount - 1"/> </xsl:call-template> </xsl:if> </xsl:template>\[/code\]Is this what I need , and call it with \[code\]select="49"\[/code\] or am I reading it wrong.If this is now what I need how can I achieve this?