<?xml version="1.0" ?>
<Q:stylesheet version="1.0" xmlns:Q = "http://www.w3.org/1999/XSL/Transform">

	<Q:template match="/">
		<Q:apply-templates />
		<Q:for-each select="/rss/channel/item">
			<a href="{link}" target="myWindow">
				<Q:choose>
					<Q:when test="title"><Q:value-of disable-output-escaping="yes" select="title"/></Q:when>
					<Q:otherwise><Q:value-of disable-output-escaping="yes" select="link"/></Q:otherwise>
				</Q:choose>
			</a>
			<br/>
		</Q:for-each>
	</Q:template>
	
	<Q:template match="//channel">
		<a href="{link}" target="myWindow">
			<b>
			<Q:choose>
				<Q:when test="title"><Q:value-of disable-output-escaping="yes" select="title"/></Q:when>
				<Q:otherwise><Q:value-of disable-output-escaping="yes" select="link"/></Q:otherwise>
			</Q:choose>
			</b></a>
			<br/>
			<Q:value-of disable-output-escaping="yes" select="description"/>
			<br/>
	</Q:template>

	<Q:template match="//item">
		<a href="{link}" target="myWindow">
		<Q:choose>
			<Q:when test="title"><Q:value-of disable-output-escaping="yes" select="title"/></Q:when>
			<Q:otherwise><Q:value-of disable-output-escaping="yes" select="link"/></Q:otherwise>
		</Q:choose>
		</a><br/>
	</Q:template>


</Q:stylesheet>

