﻿<?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="HostBrandWizardButtons.xslt"/>
	<xsl:include href="../../Version_2_0/PopUpHeader.xslt"/>
	<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="BrandID" select="normalize-space(AjaxRequest/Params/BrandID)"></xsl:variable>
		<xsl:variable name="IsCommunityAdmin" select="normalize-space(AjaxRequest/IsCommunityAdmin)"></xsl:variable>
		<xsl:variable name="Origin" select="normalize-space(AjaxRequest/Params/Origin)"></xsl:variable>
		<xsl:variable name="ParentBrandID" select="normalize-space(AjaxRequest/Params/ParentBrandID)"></xsl:variable>
		<xsl:variable name="PortalItemID" select="normalize-space(AjaxRequest/Brand/PortalItemID)"></xsl:variable>
		<xsl:variable name="PortalName" select="normalize-space(AjaxRequest/Brand/PortalItem)"></xsl:variable>
		<xsl:variable name="IsAuthenticated" select="normalize-space(AjaxRequest/IsAuthenticated)"></xsl:variable>

		<xsl:choose>
			<xsl:when test="$IsAuthenticated = 'False'">
				<div class="margin20">
					You must be logged in to view this item
				</div>
				<div class="marginLeft20 marginBottom20">
					<div class="onMouseOver textCenter divBrowseGradient spanBrowseGradientTextGray"
						 style="width:90px;line-height:30px;"
						 onclick="DisplaySignUpPopUp('signup','{$Origin}','{$BrandID}');">
						<span class="capitalFont">Sign Up</span>
					</div>
				</div>
			</xsl:when>
			<xsl:otherwise>
				<xsl:if test="$Origin = 'ClubPortal'">
					<xsl:call-template name="PopUpHeader">
						<xsl:with-param name="ItemID" select="$PortalItemID"></xsl:with-param>
						<xsl:with-param name="TemplateURL" select="$TemplateURL"></xsl:with-param>
						<xsl:with-param name="HeaderText">
							<xsl:text>Create Tournament Host</xsl:text>
						</xsl:with-param>
					</xsl:call-template>
				</xsl:if>
				<div id="divCreateBrand" class="padding15">
					<xsl:call-template name="HostBrandWizardButtons">
						<xsl:with-param name="TemplateURL" select="$TemplateURL"></xsl:with-param>
						<xsl:with-param name="HostName" select="$HostName"></xsl:with-param>
						<xsl:with-param name="Source">
							<xsl:text>CreateBrand</xsl:text>
						</xsl:with-param>
						<xsl:with-param name="ParentBrandID" select="$ParentBrandID"></xsl:with-param>
						<xsl:with-param name="BrandID" select="$BrandID"></xsl:with-param>
						<xsl:with-param name="PromoteKey" select="normalize-space(AjaxRequest/CreatedBrand/BrandKey)"></xsl:with-param>
						<xsl:with-param name="Origin" select="$Origin"></xsl:with-param>
						<xsl:with-param name="PortalItemID" select="$PortalItemID"></xsl:with-param>
					</xsl:call-template>

					<div style="color: #376092;" class="marginTop20">
						<table class="tableMaster" cellpadding="0" cellspacing="0" border="0">
							<tr>
								<td>
									<div id="divHeader">
										<span class="labelGoalTopicsText">
											<xsl:text>Step 1 of 2 – Create your Host Site in </xsl:text>
											<xsl:value-of select="$PortalName"/>
										</span>
									</div>
									<div class="paddingTop10">
										<span class="userWizardHeaderText16">
											<xsl:text>"The first step is to register your business within </xsl:text>
											<xsl:value-of select="$PortalName"/>
											<xsl:text>.  In this step, you will provide information about your business and will reserve your brand's identity within </xsl:text>
											<xsl:value-of select="$PortalName"/>
											<xsl:text>."</xsl:text>
										</span>
									</div>
								</td>
							</tr>
						</table>
					</div>
					<xsl:if test="$BrandID = 0">
						<div style="width:92%;" class="marginTop20">
							<table class="tableMaster" cellpadding="3">
								<tr>
									<td>
										<span class="packageTitle">
											Name:
										</span>
									</td>
									<td>
										<input type="text" name="BrandName" id="txtBrandName" style="width:85%; color:gray;" class="ArticleFont" maxlength="50"
											   value="Enter your brand name here.." onFocus='clearTextBox("txtBrandName","Enter your brand name here..");'
											   onBlur='setTextBoxStyle("txtBrandName","Enter your brand name here.."); setBrandSuggestedName(this); 
										   CreateBrand_CheckAvailable("txtCommunityURL"); setTextBoxStyle("txtCommunityURL","Brand Here");'/>
									</td>
								</tr>
								<tr>
									<td>
										<span class="packageTitle">
											Host URL*:
										</span>
									</td>
									<td>
										<div style="width:85%;">
											<span class="packageTitle">
												<xsl:text>http://</xsl:text>
												<xsl:value-of select="$HostName"/>/
											</span>
											<input type="text" name="CommunityURL" id="txtCommunityURL" style="color:gray;width:45%;" class="ArticleFont" maxlength="50"
												   value="Brand Here" onFocus='clearTextBox("txtCommunityURL","Brand Here");' onKeyPress='return disableEnterKey(event)'
												   onBlur='CreateBrand_CheckAvailable("txtCommunityURL"); setTextBoxStyle("txtCommunityURL","Brand Here");'/>
											<span id='errMessage' class="packageTitle" style="color:green; display:none;">OK</span>
										</div>
									</td>
								</tr>
								<tr>
									<td>
										<span class="packageTitle">
											Description:
										</span>
									</td>
									<td>
										<div style="width:85%;">
											<textarea rows="4" id="txtDescription" style="width:100%; color:gray;" class="textAreaBox"
												   onFocus='clearTextBox("txtDescription","Enter your brand description here..");'
													  onBlur='setTextBoxStyle("txtDescription","Enter your brand description here..");'>
												<xsl:text>Enter your brand description here..</xsl:text>
											</textarea>
										</div>
									</td>
								</tr>
								<tr>
									<td style="width:30%">
										<span class="packageTitle">
											Primary Address:
										</span>
									</td>
									<td class="packageTitle">
										<div style="width:85%;">
											<input type="text" id="txtAddress1" class="text marginBottom5" style="width:100%; color: gray;" name="Address1"
												   onblur="setTextBoxStyle(&quot;txtAddress1&quot;,&quot;Address 1&quot;);"
												   onfocus="clearTextBox(&quot;txtAddress1&quot;,&quot;Address 1&quot;);"
												   value="Address 1"
												   maxlength="50"></input>
										</div>
										<div style="width:85%;">
											<input type="text" id="txtAddress2" class="text marginBottom5" style="width:100%; color: gray;" name="Address2"
												   onblur="setTextBoxStyle(&quot;txtAddress2&quot;,&quot;Address 2&quot;);"
												   onfocus="clearTextBox(&quot;txtAddress2&quot;,&quot;Address 2&quot;);"
												   value="Address 2"
												   maxlength="50"></input>
										</div>
										<div style="width:85%;">
											<input type="text" id="txtCity" class="text marginBottom5" style="width:100%; color: gray;" name="City"
												   onblur="setTextBoxStyle(&quot;txtCity&quot;,&quot;City&quot;);"
												   onfocus="clearTextBox(&quot;txtCity&quot;,&quot;City&quot;);"
												   value="City"
												   maxlength="50"></input>
										</div>
										<div style="width:85%;">
											<input type="text" id="txtState" class="text marginBottom5" style="width:100%; color: gray;" name="State"
														  onblur="setTextBoxStyle(&quot;txtState&quot;,&quot;State&quot;);"
														  onfocus="clearTextBox(&quot;txtState&quot;,&quot;State&quot;);"
														  value="State"
														  maxlength="50"></input>
										</div>
										<div style="width:85%;">
											<input type="text" id="txtPostalCode" class="text marginBottom5" style="width:100%; color: gray;" name="PostalCode"
														  onblur="setTextBoxStyle(&quot;txtPostalCode&quot;,&quot;Postal Code&quot;);"
														  onfocus="clearTextBox(&quot;txtPostalCode&quot;,&quot;Postal Code&quot;);"
														  value="Postal Code"
														  maxlength="50"></input>
										</div>
									</td>
								</tr>
								<tr>
									<td style="width:30%">
										<span class="packageTitle" >
											Primary Phone:
										</span>
									</td>
									<td>
										<div class="packageTitle" style="width:85%;">
											<input type="text" id="txtMainPhone" class="text marginBottom5" style="width:100%; color: gray;" name="MainPhone"
														  onblur="setTextBoxStyle(&quot;txtMainPhone&quot;,&quot;Main Phone&quot;);"
														  onfocus="clearTextBox(&quot;txtMainPhone&quot;,&quot;Main Phone&quot;);"
														  value="Main Phone"
														  maxlength="50"></input>
										</div>
									</td>
								</tr>
								<tr>
									<td>
										<span class="packageTitle">
											Public:
										</span>
									</td>
									<td>
										<div>
											<select id ="ddlBrandSecure" name="Public" class="smallDropdown"
													style="color:gray;" onFocus="this.style.color='black';"
													onchange='setDropDownStyle("ddlBrandSecure");'>
												<option value="1" selected="selected">
													<xsl:text>Yes</xsl:text>
												</option>
												<option value="0">
													<xsl:text>No</xsl:text>
												</option>
											</select>
										</div>
									</td>
								</tr>
								<tr>
									<td>
										<span class="packageTitle">
											Publish:
										</span>
									</td>
									<td>
										<xsl:choose>
											<xsl:when test="AjaxRequest/UserRoles/Role[RoleName= 'Brand Admin']">
												<div>
													<select id="ddlPublish" name="Public" class="smallDropdown"
															style="color:gray;" onFocus="this.style.color='black';"
															onchange='setDropDownStyle("ddlPublish");'>
														<option value="1" selected="selected">
															<xsl:text>Yes</xsl:text>
														</option>
														<option value="0">
															<xsl:text>No</xsl:text>
														</option>
													</select>
												</div>
											</xsl:when>
											<xsl:otherwise>
												<span class="smallDropdown">
													<xsl:text>No</xsl:text>
												</span>
											</xsl:otherwise>
										</xsl:choose>
									</td>
								</tr>
								<tr>
									<td>
										<span class="packageTitle">
											Website URL:
										</span>
									</td>
									<td>
										<div style="width:85%;">
											<input type="text" name="Website" id="txtWebsite" style="width:100%;  color:gray;" class="text" maxlength="255"
												   value="Enter your company website here.." onFocus='clearTextBox("txtWebsite","Enter your company website here..");'
												   onBlur='setTextBoxStyle("txtWebsite","Enter your company website here..");'/>
										</div>
									</td>
								</tr>
								<tr>
									<td>
										<span class="packageTitle">
											Company E-mail:
										</span>
									</td>
									<td>
										<div style="width:85%;">
											<input type="text" name="CompanyEmail" id ="txtCompanyEmail" style="width:100%;  color:gray;" class="text" maxlength="255"
												   value="name@yourcompany.com" onFocus='clearTextBox("txtCompanyEmail","name@yourcompany.com");'
												   onBlur='setTextBoxStyle("txtCompanyEmail","name@yourcompany.com"); CheckEmail("txtCompanyEmail");'/>
										</div>
									</td>
								</tr>
								<tr>
									<td colspan="2">
										<div calss="label paddingTop10" style="color:#003366; width:95%;">
											* See our <a href="#">
												<u>Brand Reservation Policies</u>
											</a>. For questions regarding reserving your brand, please contact <a href="mailto:AccountServices@LifeSpace.com" class="link">
												<u>AccountServices@LifeSpace.com</u>
											</a>
										</div>
									</td>
									<td></td>
								</tr>
							</table>
						</div>
						<div align="right" style="width:82%;" class="paddingTop10" id="btnAddBrandContent">
							<div title="Continue Button" style="width:100px;line-height:30px;" class="textCenter onMouseOver divBrowseGradient spanBrowseGradientTextGray"
								 onClick='Brand_CreateHost("txtBrandName", "txtWebsite", "txtCompanyEmail", 
                                    "txtCommunityURL", "errMessage", "txtDescription", "ddlBrandSecure", "Brand_HiddenAggrementXML",
									"{$IsCommunityAdmin}","txtAddress1", "txtAddress2", "txtCity", "txtState", "txtPostalCode", "txtMainPhone","ddlPublish","{$ParentBrandID}","{$Origin}");'>
								<span class="capitalFont">Continue</span>
							</div>
						</div>
					</xsl:if>

					<xsl:if test="$BrandID &gt; 0">
						<div style="width:92%;" class="marginTop20">
							<table class="tableMaster" cellpadding="3">
								<tr>
									<td>
										<span class="packageTitle">
											Name:
										</span>
									</td>
									<td>
										<div style="width:85%;">
											<input type="text" name="BrandName" id="txtBrandName" style="width:100%; " class="text" maxlength="50"
												   value="{AjaxRequest/CreatedBrand/CompanyName}" onFocus='clearTextBox("txtBrandName","Enter your brand name here..");' onBlur='setTextBoxStyle("txtBrandName","Enter your brand name here..");'/>
										</div>
									</td>
								</tr>
								<tr>
									<td>
										<span class="packageTitle">
											Community URL*:
										</span>
									</td>
									<td>
										<div style="width:100%; border:0px;">
											<span class="verticallyMiddle packageTitle">
												<xsl:text>http://</xsl:text>
												<xsl:value-of select="$HostName"/>/<xsl:value-of select="normalize-space(AjaxRequest/CreatedBrand/BrandKey)"/>
											</span>
										</div>
									</td>
								</tr>
								<tr>
									<td>
										<span class="packageTitle">
											Description:
										</span>
									</td>
									<td>
										<div style="width:85%;">
											<textarea rows="4" id="txtDescription" style="width:100%;"  class="textAreaBox"
												   onFocus='clearTextBox("txtDescription","Enter your brand description here..");' onBlur='setTextBoxStyle("txtDescription","Enter your brand description here..");'>
												<xsl:value-of select='normalize-space(AjaxRequest/CreatedBrand/BrandDescription)'></xsl:value-of>
											</textarea>
										</div>
									</td>
								</tr>
								<tr>
									<td style="width:30%">
										<span class="packageTitle" >
											Primary Address:
										</span>
									</td>
									<td class="packageTitle">
										<div style="width:85%;">
											<xsl:choose>
												<xsl:when test="normalize-space(AjaxRequest/CreatedBrand/Address1) != ''">
													<input type="text" id="txtAddress1" class="text marginBottom5" style="width:100%;" name="Address1"
													   onblur="setTextBoxStyle(&quot;txtAddress1&quot;,&quot;Address 1&quot;);"
													   onfocus="clearTextBox(&quot;txtAddress1&quot;,&quot;Address 1&quot;);"
													   maxlength="50"
													   value="{AjaxRequest/CreatedBrand/Address1}"></input>
												</xsl:when>
												<xsl:otherwise>
													<input type="text" id="txtAddress1" class="text marginBottom5" style="width:100%; color: gray;" name="Address1"
													  onblur="setTextBoxStyle(&quot;txtAddress1&quot;,&quot;Address 1&quot;);"
													  onfocus="clearTextBox(&quot;txtAddress1&quot;,&quot;Address 1&quot;);"
													  value="Address 1"
													  maxlength="50"></input>
												</xsl:otherwise>
											</xsl:choose>
										</div>
										<div style="width:85%;">
											<xsl:choose>
												<xsl:when test="normalize-space(AjaxRequest/CreatedBrand/Address2) != ''">
													<input type="text" id="txtAddress2" class="text marginBottom5" style="width:100%;" name="Address2"
														   onblur="setTextBoxStyle(&quot;txtAddress2&quot;,&quot;Address 2&quot;);"
														   onfocus="clearTextBox(&quot;txtAddress2&quot;,&quot;Address 2&quot;);"
														   value="{AjaxRequest/CreatedBrand/Address2}"
														   maxlength="50"></input>
												</xsl:when>
												<xsl:otherwise>
													<input type="text" id="txtAddress2" class="text marginBottom5" style="width:100%; color: gray;" name="Address2"
														   onblur="setTextBoxStyle(&quot;txtAddress2&quot;,&quot;Address 2&quot;);"
														   onfocus="clearTextBox(&quot;txtAddress2&quot;,&quot;Address 2&quot;);"
														   value="Address 2"
														   maxlength="50"></input>
												</xsl:otherwise>
											</xsl:choose>
										</div>
										<div style="width:85%;">
											<xsl:choose>
												<xsl:when test="normalize-space(AjaxRequest/CreatedBrand/City) != ''">
													<input type="text" id="txtCity" class="text marginBottom5" style="width:100%;" name="City"
														   onblur="setTextBoxStyle(&quot;txtCity&quot;,&quot;City&quot;);"
														   onfocus="clearTextBox(&quot;txtCity&quot;,&quot;City&quot;);"
														   value="{AjaxRequest/CreatedBrand/City}"
														   maxlength="50"></input>
												</xsl:when>
												<xsl:otherwise>
													<input type="text" id="txtCity" class="text marginBottom5" style="width:100%; color: gray;" name="City"
														  onblur="setTextBoxStyle(&quot;txtCity&quot;,&quot;City&quot;);"
														  onfocus="clearTextBox(&quot;txtCity&quot;,&quot;City&quot;);"
														  value="City"
														  maxlength="50"></input>
												</xsl:otherwise>
											</xsl:choose>

										</div>
										<div style="width:85%;">
											<xsl:choose>
												<xsl:when test="normalize-space(AjaxRequest/CreatedBrand/State) != ''">
													<input type="text" id="txtState" class="text marginBottom5" style="width:100%;" name="State"
														onblur="setTextBoxStyle(&quot;txtState&quot;,&quot;State&quot;);"
														onfocus="clearTextBox(&quot;txtState&quot;,&quot;State&quot;);"
														value="{AjaxRequest/CreatedBrand/State}"
														maxlength="50"></input>
												</xsl:when>
												<xsl:otherwise>
													<input type="text" id="txtState" class="text marginBottom5" style="width:100%; color: gray;" name="State"
														onblur="setTextBoxStyle(&quot;txtState&quot;,&quot;State&quot;);"
														onfocus="clearTextBox(&quot;txtState&quot;,&quot;State&quot;);"
														value="State"
														maxlength="50"></input>
												</xsl:otherwise>
											</xsl:choose>
										</div>
										<div style="width:85%;">
											<xsl:choose>
												<xsl:when test="normalize-space(AjaxRequest/CreatedBrand/PostalCode) != ''">
													<input type="text" id="txtPostalCode" class="text marginBottom5" style="width:100%;" name="PostalCode"
														 onblur="setTextBoxStyle(&quot;txtPostalCode&quot;,&quot;Postal Code&quot;);"
														 onfocus="clearTextBox(&quot;txtPostalCode&quot;,&quot;Postal Code&quot;);"
														  value="{AjaxRequest/CreatedBrand/PostalCode}"
														 maxlength="50"></input>
												</xsl:when>
												<xsl:otherwise>
													<input type="text" id="txtPostalCode" class="text marginBottom5" style="width:100%; color: gray;" name="PostalCode"
														   onblur="setTextBoxStyle(&quot;txtPostalCode&quot;,&quot;Postal Code&quot;);"
														   onfocus="clearTextBox(&quot;txtPostalCode&quot;,&quot;Postal Code&quot;);"
														   value="Postal Code"
														   maxlength="50"></input>
												</xsl:otherwise>
											</xsl:choose>

										</div>
									</td>
								</tr>
								<tr>
									<td style="width:30%">
										<span class="packageTitle" >
											Primary Phone:
										</span>
									</td>
									<td>
										<div class="packageTitle" style="width:85%;">
											<xsl:choose>
												<xsl:when test="normalize-space(AjaxRequest/CreatedBrand/PhoneMain) != ''">
													<input type="text" id="txtMainPhone" class="text marginBottom5" style="width:100%;" name="MainPhone"
														onblur="setTextBoxStyle(&quot;txtMainPhone&quot;,&quot;Main Phone&quot;);"
														onfocus="clearTextBox(&quot;txtMainPhone&quot;,&quot;Main Phone&quot;);"
														value="{AjaxRequest/CreatedBrand/PhoneMain}"
														maxlength="50"></input>
												</xsl:when>
												<xsl:otherwise>
													<input type="text" id="txtMainPhone" class="text marginBottom5" style="width:100%; color: gray;" name="MainPhone"
														onblur="setTextBoxStyle(&quot;txtMainPhone&quot;,&quot;Main Phone&quot;);"
														onfocus="clearTextBox(&quot;txtMainPhone&quot;,&quot;Main Phone&quot;);"
														value="Main Phone"
														maxlength="50"></input>
												</xsl:otherwise>
											</xsl:choose>

										</div>
									</td>
								</tr>
								<tr>
									<td>
										<span class="packageTitle">
											Public:
										</span>
									</td>
									<td>
										<div>
											<select id ="ddlBrandSecure" name="Public" class="smallDropdown"
													onFocus="this.style.color='black';"
													onchange='setDropDownStyle("ddlBrandSecure");'>
												<xsl:if test="AjaxRequest/CreatedBrand/PublicYN = 1">
													<option value="1" selected="selected">
														<xsl:text>Yes</xsl:text>
													</option>
													<option value="0">
														<xsl:text>No</xsl:text>
													</option>
												</xsl:if>

												<xsl:if test="AjaxRequest/CreatedBrand/PublicYN = 0">
													<option value="1">
														<xsl:text>Yes</xsl:text>
													</option>
													<option value="0" selected="selected">
														<xsl:text>No</xsl:text>
													</option>
												</xsl:if>
											</select>
										</div>
									</td>
								</tr>
								<tr>
									<td>
										<span class="packageTitle">
											Publish:
										</span>
									</td>
									<td>
										<xsl:choose>
											<xsl:when test="AjaxRequest/UserRoles/Role[RoleName= 'Brand Admin']">
												<select id="ddlPublish" name="Public" class="smallDropdown"
													onFocus="this.style.color='black';"
													onchange='setDropDownStyle("ddlPublish");'>
													<xsl:if test="AjaxRequest/CreatedBrand/PublishYN = 1">
														<option value="1" selected="selected">
															<xsl:text>Yes</xsl:text>
														</option>
														<option value="0">
															<xsl:text>No</xsl:text>
														</option>
													</xsl:if>

													<xsl:if test="AjaxRequest/CreatedBrand/PublishYN = 0">
														<option value="1">
															<xsl:text>Yes</xsl:text>
														</option>
														<option value="0" selected="selected">
															<xsl:text>No</xsl:text>
														</option>
													</xsl:if>
												</select>
											</xsl:when>
											<xsl:otherwise>
												<xsl:if test="AjaxRequest/CreatedBrand/PublishYN = 1">
													<span class="smallDropdown">
														<xsl:text>Yes</xsl:text>
													</span>
												</xsl:if>

												<xsl:if test="AjaxRequest/CreatedBrand/PublishYN = 0">
													<span class="smallDropdown">
														<xsl:text>No</xsl:text>
													</span>
												</xsl:if>
											</xsl:otherwise>
										</xsl:choose>
									</td>
								</tr>
								<tr>
									<td>
										<span class="packageTitle">
											Website URL:
										</span>
									</td>
									<td>
										<div style="width:85%;">
											<input type="text" name="Website" id="txtWebsite" style="width:100%;" class="text" maxlength="50"
												   value="{AjaxRequest/CreatedBrand/CompanyWebsiteURL}" onFocus='clearTextBox("txtWebsite","Enter your company website here..");' onBlur='setTextBoxStyle("txtWebsite","Enter your company website here..");'/>
										</div>
									</td>
								</tr>
								<tr>
									<td>
										<span class="packageTitle">
											Company E-mail:
										</span>
									</td>
									<td>
										<div style="width:85%;">
											<input type="text" name="CompanyEmail" id ="txtCompanyEmail" style="width:100%; " class="text" maxlength="50"
												   value="{AjaxRequest/CreatedBrand/CompanyEmail}"  onFocus='clearTextBox("txtCompanyEmail","name@yourcompany.com");' onBlur='setTextBoxStyle("txtCompanyEmail","name@yourcompany.com"); CheckEmail("txtCompanyEmail");'/>
										</div>
									</td>
								</tr>

								<tr>
									<td colspan="2">
										<div calss="label paddingTop10" style="color:#003366; width:95%;">
											* See our <a href="#">
												<u>Brand Reservation Policies</u>
											</a>. For questions regarding reserving your brand, please contact <a href="mailto:AccountServices@LifeSpace.com" class="link">
												<u>AccountServices@LifeSpace.com</u>
											</a>
										</div>
									</td>
									<td></td>
								</tr>

							</table>
						</div>
						<div align="right" style="width:82%;" class="paddingTop10" id="btnUpdateBrandContent">
							<div title="Continue Button" style="width:100px;line-height:30px;" class="textCenter onMouseOver divBrowseGradient spanBrowseGradientTextGray"
								 onClick='Brand_UpdateHost("txtBrandName", "txtWebsite", "txtCompanyEmail", 
										"txtCommunityURL", "errMessage", "txtDescription", "ddlBrandSecure", {$BrandID},"txtAddress1", "txtAddress2", "txtCity", "txtState", "txtPostalCode", "txtMainPhone","ddlPublish","{$Origin}");'>
								<span class="capitalFont">Continue</span>
							</div>
						</div>
					</xsl:if>
				</div>
			</xsl:otherwise>
		</xsl:choose>
	</xsl:template>
</xsl:stylesheet>
