<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
	<xsl:template match="/">
		<html>
			<head>
				<script language="javascript">
				  function doThis(minimum) {
				     alert("Minimum Order: " + <xsl:value-of select="Bantams/@MinimumOrder"/>);
				  }
				  function printSilkies(){
				  	document.form1.box.value = "White: " + "<xsl:value-of select="//White/catalogNumber"/>" + "\n" + 
				  								"Blue: " + "<xsl:value-of select="//Blue/catalogNumber"/>" + "\n" +
				  								"BlacK: " + "<xsl:value-of select="//Black/catalogNumber"/>" + "\n" +
				  								"Buff: " + "<xsl:value-of select="//Buff/catalogNumber"/>";
				  }
				</script>
				<title/>
			</head>
			<body>
				<h3>Lab Puppy #1 - Part 1</h3>
				<input type="button" value="Chickens" onclick="doThis();"/>
				<br/>
				<h3>Lab Puppy #1 - Part 2</h3>
				<input type="button" value="Silkies" onclick="printSilkies();"/><br/>
				<form name="form1"><textarea rows="10" cols="50" name="box"/></form>
			</body>
		</html>
	</xsl:template>
</xsl:stylesheet>

