<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="
http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html" version="4.0" encoding="iso-8859-1" indent="yes"/>
<xsl:template match="/xxx.dbo.tblManchetter">
<xsl:apply-templates/> </xsl:template>
<xsl:template match="xxx.dbo.nyheder">
<xsl:if test="position() mod 2 = 0">
<xsl:attribute name="class">alternativeTR</xsl:attribute>
</xsl:if>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td colspan="2"> <xsl:if test="@Titel !=''"> <span class="headline1"><xsl:value-of select="@Titel"/></span><br/>
</xsl:if>
</td>
</tr>
<tr>
<td valign="top"> <xsl:if test="@Manchet !=''"> <span class="maintext"><xsl:value-of select="@Manchet" disable-output-escaping="yes"/></span>
<br style="font-size: 1px"/>
</xsl:if> <a href="{../@strOpenUrl}{@id}"> <span class="newslink">(more)</span></a>
</td>
<td align="right" valign="top">
<xsl:if test='@Lbillede !=""'>
<a class="ATT_xslt_Link{../@ManchetId}" href="{../@strOpenUrl}{@id}" target="{../@MyTarget}">
<img class="img" align="middle" hspace="5" vspace="0" border="0" width="100px" src="{@Lbillede}"/>
</a>
</xsl:if>
</td>
</tr>
</table>
</xsl:template>
</xsl:stylesheet>