<?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="img">
  	<img>
  		<xsl:attribute name="width">200px</xsl:attribute> 
		<xsl:attribute name="height">100px</xsl:attribute> 
  		<xsl:attribute name="src">
   			<xsl:value-of select="." /> 
  		</xsl:attribute>
  	</img>
  	<xsl:text> </xsl:text> 
  </xsl:template>
  <xsl:template match="info">
  	
	<table width="215">
	<tr>
	<td style="font-size:14pt;text-align:Left;">
  	
  		<a target="_blank">
  			<xsl:attribute name="href">
    				<xsl:value-of select="url" /> 
  			</xsl:attribute>
			<xsl:value-of select="FullName" /> 
  		</a>
	</td>
	</tr>
	<tr>
	<td>
		<xsl:apply-templates select="img" /> 
	</td>
	</tr>
	<tr>
	<td style="font-size:12pt;text-align:Left;">
		<xsl:value-of select="address" /> 
	</td>
	</tr>
	<tr>
	<td style="font-size:12pt;text-align:Left;">
		<xsl:value-of select="address2" /> 
	</td>
	</tr>
	<tr>
	<td style="font-size:12pt;text-align:Left;">
		<xsl:value-of select="phone" /> 
	</td>
	</tr>
</table>
</xsl:template>
</xsl:stylesheet>