﻿<?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:include href="../../../Version_2_0/PopUpHeader.xslt"/>
	<xsl:output method="xml" indent="yes"/>

	<xsl:template match="/">
		<xsl:variable name="TemplateURL" select="AjaxRequest/TemplateURL"></xsl:variable>
    <xsl:variable name="HostName" select="AjaxRequest/HostName"></xsl:variable>
		<xsl:variable name="TournamentItemID" select="AjaxRequest/Params/ItemID"></xsl:variable>

		<xsl:call-template name="PopUpHeader">
			<xsl:with-param name="ItemID" select="TournamentItemID"></xsl:with-param>
			<xsl:with-param name="HeaderText"></xsl:with-param>
			<xsl:with-param name="TemplateURL" select="$TemplateURL"></xsl:with-param>
		</xsl:call-template>

		<div id="tabTournamentComplete" align="center" class="paddingBottom20">
			<div class="marginBottom20 marginTop15">
				<span class="TournamentWinnerRound1Header">
					Tournament Complete!
				</span>
			</div>
			<div class="marginBottom20 marginTop15">
				<span class="TournamentWinnerRound1Header">
					Click “Continue” to close the program
				</span>
			</div>
			<div class="TournamentButtonGray onMouseOver" style="width:120px;" onclick="closePopupWhiteLayerContainer();">
       
          <span>Continue</span>
        			</div>
		</div>
	</xsl:template>

</xsl:stylesheet>
