<?xml version="1.0" encoding="ISO-8859-1" ?> 
  <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="/">
  	<xsl:apply-templates select="info" /> 
  </xsl:template>
    <xsl:template match="image">
  	<img>
  		<xsl:attribute name="width">100px</xsl:attribute> 
		<xsl:attribute name="height">75px</xsl:attribute> 
  		<xsl:attribute name="src">
   			<xsl:value-of select="." /> 
  		</xsl:attribute>
  	</img>
  	<xsl:text> </xsl:text> 
  </xsl:template>
  <xsl:template match="info">
	<table>
	<tr>
	<td>
  	<xsl:apply-templates select="image" /> 
	</td>
	<td style="font-size:14pt;text-align:Left;">
  	
  		<a>
  			<xsl:attribute name="href">
    				<xsl:value-of select="url" /> 
  			</xsl:attribute>
			<xsl:value-of select="name" /> 
  		</a><br/>
		Elevation (ft): <xsl:value-of select="elevation" /> <br/>
		Precision (ft): <xsl:value-of select="precision" /> 
	</td>
	</tr>
	</table>
</xsl:template>
</xsl:stylesheet>
