<?xml version='1.0' encoding='iso-8859-1'?>
<?xml-stylesheet title="msie"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     xmlns:ogr="http://ogr.maptools.org/"
     xmlns:gml="http://www.opengis.net/gml"
		version="1.0">

<!-- media-type="application/xhtml+xml"  -->
  <xsl:output method="text" 
	media-type="text/plain" encoding="utf-8" />

  <xsl:template match="ogr:MBTA_NODE">
    markers.push( createMarker("<xsl:value-of select="ogr:STATION"/> (<xsl:value-of select="ogr:LINE"/>)", <xsl:value-of select="substring-after(*//gml:coordinates/text(), ',')"/>, <xsl:value-of select="substring-before(*//gml:coordinates/text(), ',')"/>) );</xsl:template>

    <xsl:template match="text()"/>

</xsl:stylesheet>