<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/TR/REC-html40">
<xsl:output encoding="UTF-8" method="html"/>


  <xsl:template match="/">
      <xsl:apply-templates select="COMMUNICATIONCENTERCONTENT"/>
  </xsl:template>

  <xsl:template match="COMMUNICATIONCENTERCONTENT">
      <xsl:apply-templates select="CHANNEL[@TYPE='2']"/>
  </xsl:template>

  <xsl:template match="CHANNEL[@TYPE='2']">
    <table border="0" cellpadding="0" cellspacing="0" width="516">
      <xsl:apply-templates select="EXTENSION[@STATUSCODE='0']"/>
    </table>
  </xsl:template>

  <xsl:template match="EXTENSION[@STATUSCODE='0']">
	<tr><td>
		<table border="0" cellpadding="0" cellspacing="0" width="516">
		<tr>
		    <td class="pageBodyText" width="400"><a class="pageTextLinkRegular"><xsl:attribute name="href"><xsl:value-of select="@TARGETURL"/></xsl:attribute><xsl:value-of select="@NAME"/></a></td>
		    <td class="pageBodyText" width="140"><div id="launchDate"><xsl:value-of select="@LAUNCHDATE"/></div></td>
		</tr>
		<tr>
		    <td colspan="2" class="pageBodyText" width="516"><xsl:value-of select="@DESCRIPTION"/></td>
		</tr>
		<tr><td colspan="2" height="10"><img src="ext_clear.gif" height="10"></img></td></tr>
		</table>
	</td></tr>
  </xsl:template>


</xsl:stylesheet>