﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
	<xsl:output method="xml" indent="yes"/>

	<xsl:template match="/">

		<xsl:variable name="TemplateURL" select="normalize-space(AjaxRequest/TemplateURL)"></xsl:variable>
		<xsl:variable name="HostName" select="normalize-space(AjaxRequest/HostName)"></xsl:variable>
		<xsl:variable name="Name" select="normalize-space(AjaxRequest/Params/Name)"></xsl:variable>

		<xsl:call-template name="StoriesBio">
			<xsl:with-param name="TemplateURL" select="$TemplateURL"></xsl:with-param>
			<xsl:with-param name="HostName" select="$HostName"></xsl:with-param>
			<xsl:with-param name="Name" select="$Name"></xsl:with-param>
		</xsl:call-template>

	</xsl:template>
	<xsl:template name="StoriesBio">
		<xsl:param name="TemplateURL" select="'N/A'"></xsl:param>
		<xsl:param name="HostName" select="'N/A'"></xsl:param>
		<xsl:param name="Name" select="'N/A'"></xsl:param>

		<table cellpadding="0" cesspacing="0" class="tableMaster padding30">
			<xsl:choose>
				<xsl:when test="$Name = 'david'">
					<tr>
						<td class="textCenter">
							<img border="0" style="display:none;" onload="setWidthAndHeightImage(this, 450);" alt="" src="{$TemplateURL}web/images/ver_2_0/dragonkick/David-Lloyd.png"></img>
						</td>
						<td width="50%" class="verticallyMiddle">
							<div class="partiesHeaderText">
								David Lloyd
							</div>
							<div class="marginTop10 contentSmallText">
								<div>Started at the age of 6 at USA Freestyle Martial arts and earned his Black Belt.</div>
								<div class="marginTop20">
									St. Augustine High School Graduate with a cumulative GPA: 4.85
									<div>(Gold Medalist for studies, National Merit Scholar, Varsity in Track and Field / Cross Country)</div>
								</div>
								<div class="marginTop20">Attending UC Berkeley majoring in History (accepted to 16 colleges).</div>
							</div>
						</td>
					</tr>
				</xsl:when>
				<xsl:when test="$Name = 'jacob'">
					<tr>
						<td class="textCenter">
							<img border="0" style="display:none;" onload="setWidthAndHeightImage(this, 450);" alt="" src="{$TemplateURL}web/images/ver_2_0/dragonkick/Jacob-Ellis.png"></img>
						</td>
						<td width="50%" class="verticallyMiddle">
							<div class="partiesHeaderText">
								Jacob Ellis
							</div>
							<div class="marginTop10 contentSmallText">
								<div>Started at USA Freestyle Martial Arts at the age of 5 and earned his Jr. Black Belt.</div>
								<div class="marginTop20">G.I. Joe the movie stunt double and has appeared in commercials</div>
								<div class="marginTop20">World Champion Black Belt Martial Artist (30 Grand Championships and 180 National Championships)</div>
							</div>
						</td>
					</tr>
				</xsl:when>
				<xsl:when test="$Name = 'kiana'">
					<tr>
						<td class="textCenter">
							<img border="0" style="display:none;" onload="setWidthAndHeightImage(this, 450);" alt="" src="{$TemplateURL}web/images/ver_2_0/dragonkick/kiana.png"></img>
						</td>
						<td width="50%" class="verticallyMiddle">
							<div class="partiesHeaderText">
								Kiana Adams
							</div>
							<div class="marginTop10 contentSmallText">
								<div>
									Started at USA Freestyle Matial Arts at the age of 9 and earned her Black Belt.
								</div>
								<div class="marginTop20">A Junior at Madison High School and is a Honor Roll recipient all years attending.  (Varsity in Soccer and Volleyball)</div>
								<div class="marginTop20">Fluent in sign language and assistant instructor in S.T.A.R.S.</div>
							</div>
						</td>
					</tr>
				</xsl:when>
				<xsl:when test="$Name = 'christian'">
					<tr>
						<td class="textCenter">
							<img border="0" style="display:none;" onload="setWidthAndHeightImage(this, 450);" alt="" src="{$TemplateURL}web/images/ver_2_0/dragonkick/christian-Lloyd.png"></img>
						</td>
						<td width="50%" class="verticallyMiddle">
							<div class="partiesHeaderText">
								Christian Lloyd
							</div>
							<div class="marginTop10 contentSmallText">
								<div>Started at USA Freestyle Martial Arts at the age of 4 and earned his Black Belt.</div>
								<div class="marginTop20">A Sophomore at St. Augustine High School and had the highest GPA for his class last year.  (Gold Medalist for studies, Principals Scholarship recipient, and Most Valuable Wrestler J.V.)</div>
							</div>
						</td>
					</tr>
				</xsl:when>
				<xsl:otherwise>
					<tr>
						<td class="textCenter">
							<img border="0" style="display:none;" onload="setWidthAndHeightImage(this, 460);" alt="" src="{$TemplateURL}web/images/ver_2_0/dragonkick/watson.png"></img>
						</td>
						<td width="50%" class="verticallyMiddle">
							<div class="partiesHeaderText">
								Joey Watson
							</div>
							<div class="marginTop10 contentSmallText">
								<div>Started USA Freestyle Martial Arts at the age of 4 and earned his Black Belt.</div>
								<div class="marginTop20">
									Point Loma High School graduate with a cumulative GPA: 4.25
									<div>(President of CSF and Senior Class Treasurer).</div>
								</div>
								<div class="marginTop20">He graduated in THREE years from UC Davis with a degree in Economics and a degree in International Business.</div>
							</div>
						</td>
					</tr>
				</xsl:otherwise>
			</xsl:choose>
		</table>
	</xsl:template>
</xsl:stylesheet>
