<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema">


	<xsl:template match="/">
		<html>
			<head>
			<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
			<script type="text/javascript">
			_uacct = "UA-482330-5";
			urchinTracker();
			</script>	
				<xsl:for-each select="article">
					<xsl:for-each select="title">
					<title>
						<xsl:apply-templates select="text() "/>
					</title>
					</xsl:for-each>
				 </xsl:for-each>
			<script language="javascript" src="scripts/xsl_mop-up.js"></script>
			</head>
      <body onload="go_decoding();">
			<div id="cometestme" style="display:none;">
				<xsl:text disable-output-escaping="yes">&amp;amp;</xsl:text>
			</div>
			<table width="450" border="0" cellpadding="8" cellspacing="0" bgcolor="#ffffff">
			<tr><td><a href="javascript:history.back();">Back</a></td></tr>
				<xsl:for-each select="article">
					<tr>
						<td>
							<xsl:if test="title/text()">
								<span name="decodeable">
									<b>
										<font size="5">
											<xsl:value-of select="title/text()" disable-output-escaping="yes"/>
										</font>
									</b>
									<br/>
								</span>
								<!--<b>
									<font size="5">
										<xsl:apply-templates/>
									</font>
								</b>-->
							</xsl:if>
              <xsl:if test="subTitle/text()">
                <span name="decodeable">
                  <b>
                    <xsl:value-of select="subTitle/text()" disable-output-escaping="yes"/>
                  </b>
                  <br/>
                </span>
                <!--<xsl:for-each select="subTitle">
									<b>
										<xsl:apply-templates/>
									</b>
									<br/>
								</xsl:for-each>-->
              </xsl:if>
							<br/>
							<xsl:for-each select="article">
								<xsl:apply-templates/>
							</xsl:for-each>
						</td>
					</tr>

					<xsl:for-each select="section">
						<tr>
							<td>
								<a>
									<xsl:attribute name="name">
										<xsl:value-of select="@id"/>
									</xsl:attribute>
								</a>
								<xsl:for-each select="image">
									<xsl:if test="string-length(@src)>0">
										<xsl:for-each select="@src">
											<img  align="right" vspace="5" hspace="8" border="1" width="150" height="150">
												<xsl:attribute name="src">
													<xsl:value-of select="." />
												</xsl:attribute>
												<xsl:attribute name="alt">
													<xsl:value-of select="../alt" />
												</xsl:attribute>
											</img>
										</xsl:for-each>
									</xsl:if>
								</xsl:for-each>
								<xsl:if test="title/text()">
									<b>
										<font size="4">
											<xsl:for-each select="title">
												<xsl:apply-templates/>
											</xsl:for-each>
										</font>
									</b>
								</xsl:if>
								<p>
									<span name="decodeable">
										<xsl:value-of select="content/text()" disable-output-escaping="yes"/>
									</span>
								</p>
							</td>
						</tr>
					</xsl:for-each>

					<xsl:if test="count(sponsor)>0">
						<tr>
							<td>
								<b>Source:</b>
							</td>
						</tr>
					</xsl:if>
					<xsl:for-each select="sponsor">
						<tr>
							<td>
								<a>
									<xsl:if test="string-length(url)>0">
										<xsl:attribute name="onClick">
											javascript:urchinTracker('<xsl:value-of select="url"/>');
										</xsl:attribute>
										<xsl:attribute name="href">
											<xsl:value-of select="url"/>
										</xsl:attribute>
									</xsl:if>
									<xsl:for-each select="name">
										<xsl:apply-templates/>
									</xsl:for-each>
								</a>
							</td>
						</tr>
					</xsl:for-each>
					<tr>
						<td>
							<p>
                <span name="decodeable">
                  <xsl:value-of select="footer/text()" disable-output-escaping="yes"/>
                </span>
							</p>
						</td>
					</tr>
				</xsl:for-each>
			</table>
			</body>
		</html>
	</xsl:template>
</xsl:stylesheet>

