Well if you mean you don't want to output the ITEM element if it has a DELETE child then you need to change the select from:
Code:
<xsl:apply-templates select="ITEM[not(DELETE)]"/>
or change the matching template, having one for each type:
Code:
<xsl:template match="ITEM[DELETE]"/>
and
Code:
<xsl:template match="ITEM[not(DELETE)]">
<h4><a><xsl:attribute name="href"><xsl:value-of select="LINK"/></xsl:attribute>
<xsl:value-of select="TITLE"/></a><br/>
<xsl:value-of select="DATE"/></h4>
</xsl:template>
--
Joe (
Microsoft MVP - XML)