<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">

<xsl:template match="/">
   <xsl:apply-templates select="am_object/am_titles/OTG_object_title_name/OTN__object_title_name"/><BR />
  <xsl:apply-templates select="am_object/am_media_metadata/XRE_dc_relation[1]/XRI__dc_relation_identifier"/><BR />

</xsl:template>
  

<xsl:template match="OTN__object_title_name">
	<FONT FACE="Arial" SIZE="2" COLOR="#000000"><B><xsl:apply-templates />
	</B></FONT>
</xsl:template>
  
<xsl:template match="XRI__dc_relation_identifier">
	<img>
	   <xsl:attribute name="src">
	      <xsl:apply-templates />
	  	 </xsl:attribute>
	</img> 
</xsl:template>
  
<xsl:template match="text()"><xsl:value-of /></xsl:template>
  
</xsl:stylesheet>
