<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="FormType" />
<xsl:param name="KeyField" />
<xsl:template match="/">
<Query xmlns:xsd="http://www.w3.org/2000/10/XMLSchema-instance" xsd:noNamespaceSchemaLocation="COMQFM.XSD">
<Key>
<FormType>
<xsl:value-of select="$FormType" />
</FormType>
<KeyField>
<xsl:value-of select="$KeyField" />
</KeyField>
</Key>
</Query>
</xsl:template>
</xsl:stylesheet>