﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="/">
        <xsl:variable name ="BrandName" select="normalize-space(AjaxRequest/Brand)"></xsl:variable>
        <xsl:variable name ="BrandID" select="normalize-space(AjaxRequest/BrandID)"></xsl:variable>
        <xsl:variable name ="TemplateURL" select="normalize-space(AjaxRequest/TemplateURL)"></xsl:variable>
        <xsl:variable name="HostName" select="normalize-space(AjaxRequest/HostName)"></xsl:variable>

        <table cellpadding="0" cellspacing="0" width="100%" style="padding:15px;">
            <tr>
                <td width="20%">
                    <span class="labelSize10">
                        Contact&#xa0;<xsl:value-of select ="$BrandName"/>&#xa0;:
                    </span>
                </td>
                <td width="80%">
                    <div style="width:85%;">
                        <textarea rows="4" id="txtContact" style="width:100%; color:gray;" class="textAreaBox"
                             onFocus='clearTextBox("txtContact","Enter your query here..");' 
                             onBlur='setTextBoxStyle("txtContact","Enter your query here..");'>Enter your query here..</textarea>
                    </div>
                </td>
            </tr>
            <tr>
                <td></td>
                <td style="padding-top: 10px; padding-bottom: 10px;">
                    <input type="button" value="Save" class="button"/>
                </td>
            </tr>
        </table>
    </xsl:template>
</xsl:stylesheet>
