<?xml version="1.0"?>
<xsl:stylesheet version="2.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	extension-element-prefixes="xsi">
  
	<xsl:template match="/">
		<html>
			<head>
				<title>Find SHORT-NAMES</title>
			</head>
			<body>
			<xsl:for-each select="//*/SHORT-NAME">
				<xsl:value-of select="."/><br/>
			</xsl:for-each>
			</body>
		</html>
	</xsl:template>
</xsl:stylesheet>