<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

	<xsl:template match="figure">
		<xsl:if test="@id!=''">
			<a name="{@id}"/>
		</xsl:if>

		<div align="center">
			<xsl:for-each select="graphic/hotspot">
				<a href="#{@id}" name="h{@id}"/>
			</xsl:for-each>
			<xsl:if test="graphic/@id!=''">
				<a name="{graphic/@id}"/>
			</xsl:if>

			<xsl:choose>
				<xsl:when test="contains(unparsed-entity-uri(graphic/@boardno),'.cgm') or contains(unparsed-entity-uri(graphic/@boardno),'.eps')">
					<xsl:text>mmmmbop<OBJECT DATA="{unparsed-entity-uri(graphic/@boardno)}" TYPE="image/cgm;Version=4;ProfileId=WebCGM" WIDTH="200" HEIGHT="100"></OBJECT></xsl:text>
					<xsl:element name="embed">
						<xsl:attribute name="src">
							<xsl:value-of select="unparsed-entity-uri(graphic/@boardno)"/>
						</xsl:attribute>
						<xsl:attribute name="width">
							<xsl:text>400</xsl:text>
						</xsl:attribute>
						<xsl:attribute name="height">
							<xsl:text>400</xsl:text>
						</xsl:attribute>
						<xsl:if test="graphic/@reprowid!=''">
							<xsl:attribute name="width">
								<xsl:value-of select="graphic/@reprowid"/>
							</xsl:attribute>
						</xsl:if>
						<xsl:if test="graphic/@reprohgt!=''">
							<xsl:attribute name="height">
								<xsl:value-of select="graphic/@reprohgt"/>
							</xsl:attribute>
						</xsl:if>
					</xsl:element>
				</xsl:when>
				<xsl:otherwise>
					<xsl:element name="img">
						<xsl:attribute name="src">
							<xsl:value-of select="unparsed-entity-uri(graphic/@boardno)"/>
						</xsl:attribute>
						<xsl:if test="graphic/@reprowid!=''">
							<xsl:attribute name="width">
								<xsl:value-of select="graphic/@reprowid"/>
							</xsl:attribute>
						</xsl:if>
						<xsl:if test="graphic/@reprohgt!=''">
							<xsl:attribute name="height">
								<xsl:value-of select="graphic/@reprohgt"/>
							</xsl:attribute>
						</xsl:if>
					</xsl:element>
				</xsl:otherwise>
			</xsl:choose>

			<br/>
			<strong>
				<xsl:value-of select="title"/>
			</strong>
		</div>

		<xsl:apply-templates/>
	</xsl:template>

	<xsl:template match="figure/title"/>

	<xsl:template match="figure/graphic">
		<xsl:apply-templates/>
	</xsl:template>
	<xsl:template match="hotspot"/>
</xsl:stylesheet><!-- Stylus Studio meta-information - (c)1998-2004. Sonic Software Corporation. All rights reserved.
<metaInformation>
<scenarios ><scenario default="yes" name="Scenario1" userelativepaths="yes" externalpreview="yes" url="DMC&#x2D;BICYCLEXXXAAA&#x2D;AAA&#x2D;D00&#x2D;00&#x2D;00&#x2D;0000&#x2D;041A&#x2D;A_000&#x2D;02.xml" htmlbaseurl="" outputurl="" processortype="internal" profilemode="0" profiledepth="" profilelength="" urlprofilexml="" commandline="" additionalpath="" additionalclasspath="" postprocessortype="none" postprocesscommandline="" postprocessadditionalpath="" postprocessgeneratedext=""/></scenarios><MapperMetaTag><MapperInfo srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no"/><MapperBlockPosition></MapperBlockPosition></MapperMetaTag>
</metaInformation>
-->