[xsl] IE (6.0) says <xsl:document > not allowed in <xsl:template> ?????

Subject: [xsl] IE (6.0) says <xsl:document > not allowed in <xsl:template> ?????
From: "Bovy, Stephen J" <STEPHEN.Bovy@xxxxxx>
Date: Sun, 22 May 2005 22:27:32 -0400
<xsl:template match="/">
  <html>
    <head>
      <title>
        <xsl:value-of select="local-name(/*)"/>
      </title>
    </head>
    <body>
 <frameset rows="13%,*" border="0" id="fscroll" name="fscroll">
   <frame name="head" id="head" src="head.html"
      marginheight="2" marginwidth="2" scrolling="no" />
   <frame name="body" id="body" src="body.html"
      marginheight="2" marginwidth="2" />
 </frameset>
      <xsl:apply-templates/>
    </body>
  </html>
</xsl:template>

<xsl:template match="/*">
  <xsl:document href="head.xml" >
  <table id="tb1" border="1" width="100%" cellpadding="5" >
    <tbody>
      <tr bordercolor="yellow" bgcolor="Aqua">
        <th colspan="18" >
          <xsl:value-of select="local-name(/*)"/>
        </th>
      </tr>
      <tr bordercolor="yellow" bgcolor="#00CCFF">
        <xsl:apply-templates select="/*/* 1 /*" mode="header"/>
      </tr>
    </tbody>
  </table>
  </xsl:document >
  <xsl:document href="body.xml" >
  <table id="tb2" border="1" width="100%" cellpadding="5" >
    <tbody>
      <xsl:apply-templates />
    </tbody>
  </table>
  </xsl:document >
</xsl:template>

Current Thread