var atlbigtrains_xsl = "\
\
<txsl:transform xmlns:txsl='http://www.cjandia.com/2001/espx-tinyxsl' \
                xmlns:utils='urn:this-document-utilities' \
                version='-0.81' \
                >\
<txsl:template match='#document'>\
    <txsl:apply-templates/>\
</txsl:template>\
<txsl:template match='AtlBigTrains'>\
    <txsl:apply-templates/>\
</txsl:template>\
<txsl:template match='BigTrain'>\
	<tr>\
		<td colspan='2'>&nbsp;</td>\
		<td valign='top' align='center'>-</td>\
		<td valign='top' align='left'>\
		<txsl:apply-templates select='Title'/>\
		    	&nbsp;<txsl:apply-templates select='Desc'/>\
		</td>\
	</tr>\
</txsl:template>\
<txsl:template match='Title'>\
	<b>\
	<txsl:if test='$(`@href`) != ``'><a target='_blank' href='{$(`@href`)}'><txsl:apply-templates/></a>\
	</txsl:if>\
\
	<txsl:if test='$(`@href`) == ``'><txsl:apply-templates/>\
	</txsl:if>\
	</b>\
</txsl:template>\
</txsl:transform>\
";