<?xml version="1.0" encoding="UTF-8"?>
  <!--
       Description   Edit XSL Transformation for Form Project FAQs
       Copyright     Copyright (c) SAP AG 2009
       Author        XML Forms Document Builder 1.0
       Version       3.3 2009-10-14
  -->
  <!DOCTYPE xsl:stylesheet [
  <!ENTITY nbsp "&#160;">
  ]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:xf="http://www.sapportals.com/wcm/app/xmlforms">
    <!--
         PIPELINE PARAMETERS SECTION
    -->
    <xsl:param name="urpopupjsurl"/>
    <xsl:param name="dataurl"/>
    <xsl:param name="sap_user"/>
    <xsl:param name="resfileext"/>
    <xsl:param name="packetNo">0</xsl:param>
    <xsl:param name="packetSize">5</xsl:param>
    <xsl:param name="system_config_activateInOutDent">init-value-has-to-be-overwritten</xsl:param>
    <xsl:param name="time"/>
    <xsl:param name="detailsurl"/>
    <xsl:param name="htmleditor"/>
    <xsl:param name="resfile">FAQs.xml</xsl:param>
    <xsl:param name="scheme"/>
    <xsl:param name="system_config_activateClipboard">init-value-has-to-be-overwritten</xsl:param>
    <xsl:param name="uselighteditor">false</xsl:param>
    <xsl:param name="accessibilitymode">false</xsl:param>
    <xsl:param name="docorientation"/>
    <xsl:param name="locDate"/>
    <xsl:param name="querystring"/>
    <xsl:param name="serverprefix"/>
    <xsl:param name="templates"/>
    <xsl:param name="fulldate"/>
    <xsl:param name="callbackurl"/>
    <xsl:param name="xmlformsbrowsers"/>
    <xsl:param name="serviceservlet"/>
    <xsl:param name="dataext"/>
    <xsl:param name="locTime"/>
    <xsl:param name="imagepath"/>
    <xsl:param name="sap_user_id"/>
    <xsl:param name="feedbackurl"/>
    <xsl:param name="system_config_activateTextSettings">init-value-has-to-be-overwritten</xsl:param>
    <xsl:param name="cssurl"/>
    <xsl:param name="resfilepostfix"/>
    <xsl:param name="css"/>
    <xsl:param name="previewservlet"/>
    <xsl:param name="datapath"/>
    <xsl:param name="system_config_activateHighSecure">init-value-has-to-be-overwritten</xsl:param>
    <xsl:param name="system_config_activateColorSettings">init-value-has-to-be-overwritten</xsl:param>
    <xsl:param name="contentaccess"/>
    <xsl:param name="servletpath"/>
    <xsl:param name="system_config_activateList">init-value-has-to-be-overwritten</xsl:param>
    <xsl:param name="date"/>
    <xsl:param name="authorpreviewresource"/>
    <xsl:param name="globalresfile">Global-ResourceFile.xml</xsl:param>
    <xsl:param name="querystringpart"/>
    <xsl:param name="browser"/>
    <xsl:param name="listservlet"/>
    <xsl:param name="javascriptpath"/>
    <xsl:param name="mimepath"/>
    <xsl:param name="clientcountry"/>
    <xsl:param name="navigationaccess"/>
    <xsl:param name="system_config_activateLinks">init-value-has-to-be-overwritten</xsl:param>
    <xsl:param name="serverport"/>
    <xsl:param name="simpledateformat">dd.MM.yyyy</xsl:param>
    <xsl:param name="servername"/>
    <xsl:param name="guid"/>
    <xsl:param name="sendtourl"/>
    <xsl:param name="projectroot"/>
    <xsl:param name="browserversion"/>
    <xsl:param name="allowhtml">false</xsl:param>
    <xsl:param name="system_config_activateTableFeatures">init-value-has-to-be-overwritten</xsl:param>
    <xsl:param name="xmlformsroot"/>
    <xsl:param name="urmapijsurl"/>
    <xsl:param name="sap_language"/>
    <xsl:param name="editservlet"/>
    <xsl:param name="editmode">edit</xsl:param>
    <xsl:param name="system_config_activateImage">init-value-has-to-be-overwritten</xsl:param>
    <xsl:variable select="'abcdefghijklmnopqrstuvwxyz'" name="lcletters"/>
    <xsl:variable select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'" name="ucletters"/>
    <!--
         RESOURCE FILE DOCUMENT
    -->
    <xsl:variable select="document(concat('wcm:/',substring-after($xmlformsroot, $contentaccess), '/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES" name="globalresources"/>
    <xsl:variable select="document(concat('wcm:/',substring-after($xmlformsroot, $contentaccess), '/FAQs/', $resfile))/ROOT/RESOURCES" name="resources"/>
    <!--
         FORM PARAMETERS TEMPLATE
    -->
    <xsl:template match="xf:formsparameters">
      <xsl:apply-templates select="xf:param"/>
    </xsl:template>
    <!--
         FORM PARAMETER TEMPLATE
    -->
    <xsl:template match="xf:param">
      <xsl:if test="@type='hidden'">
        <input type="hidden">
          <xsl:attribute name="name">
            <xsl:value-of select="@name"/>
          </xsl:attribute>
          <xsl:attribute name="value">
            <xsl:value-of select="."/>
          </xsl:attribute>
        </input>
      </xsl:if>
    </xsl:template>
    <xsl:template match="xf:allowedvalues">
      <xsl:param select="combo" name="mode"/>
      <xsl:param name="inputname"/>
      <xsl:param name="value"/>
      <xsl:param select="__" name="default_value"/>
      <xsl:param select="__" name="default_display"/>
      <xsl:for-each select="xf:valuedef">
        <xsl:choose>
          <xsl:when test="($mode='combo_plus_default') and ($editmode='create')">
            <option>
              <xsl:attribute name="value">
                <xsl:value-of select="./xf:value"/>
              </xsl:attribute>
              <xsl:value-of select="./xf:name"/>
            </option>
          </xsl:when>
          <xsl:when test="($mode='combo') or ($mode='combo_plus_default')">
            <option>
              <xsl:attribute name="value">
                <xsl:value-of select="./xf:value"/>
              </xsl:attribute>
              <xsl:if test="$value=./xf:value">
                <xsl:attribute name="selected">true</xsl:attribute>
              </xsl:if>
              <xsl:value-of select="./xf:name"/>
            </option>
          </xsl:when>
          <xsl:when test="$mode='radio'">
            <p>
              <input type="radio">
                <xsl:attribute name="value">
                  <xsl:value-of select="./xf:value"/>
                </xsl:attribute>
                <xsl:attribute name="name">
                  <xsl:value-of select="$inputname"/>
                </xsl:attribute>
                <xsl:if test="$value=./xf:value">
                  <xsl:attribute name="checked"/>
                </xsl:if>
                <xsl:value-of select="./xf:name"/>
              </input>
            </p>
          </xsl:when>
        </xsl:choose>
      </xsl:for-each>
      <xsl:if test="($mode='combo_plus_default') and ($editmode='create')">
        <option>
          <xsl:attribute name="value">
            <xsl:value-of select="$default_value"/>
          </xsl:attribute>
          <xsl:attribute name="selected">true</xsl:attribute>
          <xsl:value-of select="$default_display"/>
        </option>
      </xsl:if>
    </xsl:template>
    <xsl:template name="outputvalue">
      <xsl:param name="value"/>
      <xsl:choose>
        <xsl:when test="$allowhtml!='false'">
          <xsl:value-of select="$value" disable-output-escaping="yes"/>
        </xsl:when>
        <xsl:otherwise>
          <xsl:value-of select="$value"/>
        </xsl:otherwise>
      </xsl:choose>
    </xsl:template>
    <xsl:template name="error_block_template">
      <xsl:param name="errText"/>
      <xsl:param name="variable"/>
      <xsl:param name="tabindex"/>
      <xsl:if test="./xf:ValidationError/@tagname=$variable and (normalize-space($errText)!='' or normalize-space(./xf:ValidationError[@tagname=$variable]/xf:message)!='')">
        <table cellpadding="1" cellspacing="0">
          <tr>
            <td valign="top" width="12">
              <span class="urMsgBarImgError">
                <img height="12" border="0" width="12">
                  <xsl:if test="$accessibilitymode='true'">
                    <xsl:attribute name="tabindex">
                      <xsl:value-of select="$tabindex"/>
                    </xsl:attribute>
                  </xsl:if>
                  <xsl:attribute name="src">
                    <xsl:value-of select="$contentaccess">/etc/xmlforms/XFBuilderConfig/transpix.gif</xsl:value-of>
                  </xsl:attribute>
                  <xsl:attribute name="alt">
                    <xsl:value-of select="$globalresources/TEXT[@AKEY='XF_ALT_ERROR']"/>
                  </xsl:attribute>
                  <xsl:attribute name="title">
                    <xsl:value-of select="$globalresources/TEXT[@AKEY='XF_ALT_ERROR']"/>
                  </xsl:attribute>
                </img>
              </span>
            </td>
            <td valign="top">
              <font class="urTxtLbl">
                <span>
                  <xsl:if test="$accessibilitymode='true'">
                    <xsl:attribute name="tabindex">
                      <xsl:value-of select="$tabindex"/>
                    </xsl:attribute>
                  </xsl:if>
                  <xsl:value-of select="$errText"/>
                  <xsl:choose>
                    <xsl:when test="normalize-space(./xf:ValidationError[@tagname=$variable]/xf:message)!=''">
                      <xsl:if test="normalize-space($errText)!=''">
                        <xsl:value-of select="' '"/>
                      </xsl:if>
                      <xsl:value-of select="./xf:ValidationError[@tagname=$variable]/xf:message"/>
                    </xsl:when>
                  </xsl:choose>
                </span>
              </font>
            </td>
          </tr>
        </table>
      </xsl:if>
    </xsl:template>
    <xsl:template name="printPropValues">
      <xsl:param name="propId"/>
      <xsl:param name="display"/>
      <xsl:param select="'false'" name="disableOutputEscaping"/>
      <xsl:param select="','" name="separator"/>
      <xsl:param name="mailto"/>
      <xsl:param name="tabIndex"/>
      <xsl:param name="forceTabindexAdding"/>
      <xsl:param select="'false'" name="useDisplayName"/>
      <xsl:for-each select="xf:resourceproperties/xf:property[@id=$propId]/xf:values/xf:valuedef">
        <xsl:choose>
          <xsl:when test="($mailto!='') and (xf:displayValue[@param=$mailto]) and (xf:displayValue[@param=$mailto]!='')">
            <xsl:choose>
              <xsl:when test="($display!='') and (xf:displayValue[@param=$display]) and (xf:displayValue[@param=$display]!='')">
                <xsl:if test="($separator!='') and (position()&gt;1)">
                  <xsl:value-of select="$separator"/>
                </xsl:if>
                <a>
                  <xsl:attribute name="href">mailto:<xsl:value-of select="xf:displayValue[@param=$mailto]"/>
                  </xsl:attribute>
                  <xsl:attribute name="tabindex">
                    <xsl:value-of select="$tabIndex"/>
                  </xsl:attribute>
                  <xsl:choose>
                    <xsl:when test="($disableOutputEscaping='yes') and ($allowhtml!='false')">
                      <xsl:value-of select="xf:displayValue[@param=$display]" disable-output-escaping="yes"/>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:value-of select="xf:displayValue[@param=$display]"/>
                    </xsl:otherwise>
                  </xsl:choose>
                </a>
              </xsl:when>
              <xsl:when test="($useDisplayName='true') and (xf:displayValue[@default='true']) and (xf:displayValue[@default='true']!='')">
                <xsl:if test="($separator!='') and (position()&gt;1)">
                  <xsl:value-of select="$separator"/>
                </xsl:if>
                <a>
                  <xsl:attribute name="href">mailto:<xsl:value-of select="xf:displayValue[@param=$mailto]"/>
                  </xsl:attribute>
                  <xsl:attribute name="tabindex">
                    <xsl:value-of select="$tabIndex"/>
                  </xsl:attribute>
                  <xsl:choose>
                    <xsl:when test="($disableOutputEscaping='yes') and ($allowhtml!='false')">
                      <xsl:value-of select="xf:displayValue[@default='true']" disable-output-escaping="yes"/>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:value-of select="xf:displayValue[@default='true']"/>
                    </xsl:otherwise>
                  </xsl:choose>
                </a>
              </xsl:when>
              <xsl:otherwise>
                <xsl:if test="(xf:value) and (xf:value!='')">
                  <xsl:if test="($separator!='') and (position()&gt;1)">
                    <xsl:value-of select="$separator"/>
                  </xsl:if>
                  <a>
                    <xsl:attribute name="href">mailto:<xsl:value-of select="xf:displayValue[@param=$mailto]"/>
                    </xsl:attribute>
                    <xsl:attribute name="tabindex">
                      <xsl:value-of select="$tabIndex"/>
                    </xsl:attribute>
                    <xsl:choose>
                      <xsl:when test="($disableOutputEscaping='yes') and ($allowhtml!='false')">
                        <xsl:value-of select="xf:value" disable-output-escaping="yes"/>
                      </xsl:when>
                      <xsl:otherwise>
                        <xsl:value-of select="xf:value"/>
                      </xsl:otherwise>
                    </xsl:choose>
                  </a>
                </xsl:if>
              </xsl:otherwise>
            </xsl:choose>
          </xsl:when>
          <xsl:otherwise>
            <xsl:choose>
              <xsl:when test="($display!='') and (xf:displayValue[@param=$display]) and (xf:displayValue[@param=$display]!='')">
                <xsl:if test="($separator!='') and (position()&gt;1)">
                  <xsl:value-of select="$separator"/>
                </xsl:if>
                <xsl:choose>
                  <xsl:when test="$forceTabindexAdding!=''">
                    <span tabindex="0">
                      <xsl:choose>
                      <xsl:when test="($disableOutputEscaping='yes') and ($allowhtml!='false')">
                          <xsl:value-of select="xf:displayValue[@param=$display]" disable-output-escaping="yes"/>
                        </xsl:when>
                      <xsl:otherwise>
                          <xsl:value-of select="xf:displayValue[@param=$display]"/>
                        </xsl:otherwise>
                    </xsl:choose>
                    </span>
                  </xsl:when>
                  <xsl:otherwise>
                    <xsl:choose>
                      <xsl:when test="($disableOutputEscaping='yes') and ($allowhtml!='false')">
                          <xsl:value-of select="xf:displayValue[@param=$display]" disable-output-escaping="yes"/>
                        </xsl:when>
                      <xsl:otherwise>
                          <xsl:value-of select="xf:displayValue[@param=$display]"/>
                        </xsl:otherwise>
                    </xsl:choose>
                  </xsl:otherwise>
                </xsl:choose>
              </xsl:when>
              <xsl:when test="($useDisplayName='true') and (xf:displayValue[@default='true']) and (xf:displayValue[@default='true']!='')">
                <xsl:if test="($separator!='') and (position()&gt;1)">
                  <xsl:value-of select="$separator"/>
                </xsl:if>
                <xsl:choose>
                  <xsl:when test="$forceTabindexAdding!=''">
                    <span tabindex="0">
                      <xsl:choose>
                      <xsl:when test="($disableOutputEscaping='yes') and ($allowhtml!='false')">
                          <xsl:value-of select="xf:displayValue[@default='true']" disable-output-escaping="yes"/>
                        </xsl:when>
                      <xsl:otherwise>
                          <xsl:value-of select="xf:displayValue[@default='true']"/>
                        </xsl:otherwise>
                    </xsl:choose>
                    </span>
                  </xsl:when>
                  <xsl:otherwise>
                    <xsl:choose>
                      <xsl:when test="($disableOutputEscaping='yes') and ($allowhtml!='false')">
                          <xsl:value-of select="xf:displayValue[@default='true']" disable-output-escaping="yes"/>
                        </xsl:when>
                      <xsl:otherwise>
                          <xsl:value-of select="xf:displayValue[@default='true']"/>
                        </xsl:otherwise>
                    </xsl:choose>
                  </xsl:otherwise>
                </xsl:choose>
              </xsl:when>
              <xsl:otherwise>
                <xsl:if test="(xf:value) and (xf:value!='')">
                  <xsl:if test="($separator!='') and (position()&gt;1)">
                    <xsl:value-of select="$separator"/>
                  </xsl:if>
                  <xsl:choose>
                    <xsl:when test="$forceTabindexAdding!=''">
                      <span tabindex="0">
                        <xsl:choose>
                        <xsl:when test="($disableOutputEscaping='yes') and ($allowhtml!='false')">
                            <xsl:value-of select="xf:value" disable-output-escaping="yes"/>
                          </xsl:when>
                        <xsl:otherwise>
                            <xsl:value-of select="xf:value"/>
                          </xsl:otherwise>
                      </xsl:choose>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="($disableOutputEscaping='yes') and ($allowhtml!='false')">
                            <xsl:value-of select="xf:value" disable-output-escaping="yes"/>
                          </xsl:when>
                        <xsl:otherwise>
                            <xsl:value-of select="xf:value"/>
                          </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </xsl:if>
              </xsl:otherwise>
            </xsl:choose>
          </xsl:otherwise>
        </xsl:choose>
      </xsl:for-each>
    </xsl:template>
    <!--
         MAIN ITEM TEMPLATE
    -->
    <xsl:template name="item">
      <!--
           general error message 
      -->
      <xsl:if test="./xf:WithErrors/@number &gt; 0">
        <div class="urMsgBarErrBtm">
          <table width="100%" cellpadding="1" cellspacing="0">
            <tr>
              <td valign="top" width="12">
                <span class="urMsgBarImgError">
                  <img height="12" border="0 px" width="12">
                    <xsl:attribute name="src">
                      <xsl:value-of select="$mimepath"/>1x1.gif</xsl:attribute>
                  </img>
                </span>
              </td>
              <td valign="top">
                <font class="urTxtLbl">
                  <span>
                    <xsl:attribute name="tabindex">
                      <xsl:if test="$accessibilitymode='true'">1</xsl:if>
                    </xsl:attribute>
                    <xsl:value-of select="$resources/TEXT[@AKEY='lbl_H_Edit']"/>
                  </span>
                </font>
              </td>
            </tr>
          </table>
        </div>
      </xsl:if>
      <table width="100%" class="urGrpBdyBoxBgColor" cellpadding="1" cellspacing="1">
        <tr>
          <td height="5%" valign="top" width="77%" rowspan="1" colspan="4">
            <p>
              <span class="urTxtH2">
                <span>
                  <xsl:attribute name="tabindex">
                    <xsl:if test="$accessibilitymode='true'">3447</xsl:if>
                  </xsl:attribute>
                  <nobr>
                    <span style="font-family:Arial;">
                      <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1020421170427']"/>
                    </span>
                  </nobr>
                </span>
              </span>
            </p>
          </td>
          <td height="5%" valign="top" width="23%"/>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1&quot; bgcolor=&quot;black&quot; valign=&quot;top&quot; width=&quot;77%&quot; rowspan=&quot;1&quot; align=&quot;left&quot; colspan=&quot;4&quot;/&gt;&lt;td height=&quot;0%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;12%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;27%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="5%" valign="top" width="12%" rowspan="1" colspan="1">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <span style="font-family:Arial;">
                    <xsl:choose>
                      <xsl:when test="./xf:ValidationError/@tagname='created'">
                        <span class="urTxtNeg">
                          <label ffoorr="field_1020421170430" onclick="xf_focusLabel(this);" id="label_field_1020421170430">
                            <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1020421170425']"/>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'"> *</xsl:when>
                              <xsl:otherwise> *</xsl:otherwise>
                            </xsl:choose>
                          </label>
                        </span>
                      </xsl:when>
                      <xsl:otherwise>
                        <label ffoorr="field_1020421170430" onclick="xf_focusLabel(this);" id="label_field_1020421170430">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1020421170425']"/>
                          <span class="urTxtNeg">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'"> *</xsl:when>
                              <xsl:otherwise> *</xsl:otherwise>
                            </xsl:choose>
                          </span>
                        </label>
                      </xsl:otherwise>
                    </xsl:choose>
                  </span>
                </nobr>
              </span>
            </p>
          </td>
          <td height="5%" valign="top" width="2%"/>
          <td height="5%" valign="top" width="63%" rowspan="1" colspan="2">
            <!--
                 ADDING ITEM CALL FOR item1
            -->
            <xsl:call-template name="item1"/>
          </td>
          <td height="5%" valign="top" width="23%"/>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;12%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;27%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="5%" valign="top" width="12%" rowspan="1" colspan="1">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <span style="font-family:Arial;">
                    <xsl:choose>
                      <xsl:when test="(./xf:ValidationError/@tagname='Question') or (./xf:ValidationError/@tagname='wcmprop.displayname')">
                        <span class="urTxtNeg">
                          <label ffoorr="field_1020421170431" onclick="xf_focusLabel(this);" id="label_field_1020421170431">
                            <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1020421170428']"/>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'"> *</xsl:when>
                              <xsl:otherwise> *</xsl:otherwise>
                            </xsl:choose>
                          </label>
                        </span>
                      </xsl:when>
                      <xsl:otherwise>
                        <label ffoorr="field_1020421170431" onclick="xf_focusLabel(this);" id="label_field_1020421170431">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1020421170428']"/>
                          <span class="urTxtNeg">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'"> *</xsl:when>
                              <xsl:otherwise> *</xsl:otherwise>
                            </xsl:choose>
                          </span>
                        </label>
                      </xsl:otherwise>
                    </xsl:choose>
                  </span>
                </nobr>
              </span>
            </p>
          </td>
          <td height="5%" valign="top" width="2%"/>
          <td height="11%" valign="top" width="63%" rowspan="2" colspan="2">
            <!--
                 text area for element Question
            -->
            <xsl:if test="Question='' and ($editmode='create')">
              <textarea wrap="true" class="urTedWhl" rows="5" cols="47" id="field_1020421170431">
                <xsl:choose>
                  <xsl:when test="$accessibilitymode='true'">
                    <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                        <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                          <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                        </xsl:when>
                        <xsl:otherwise>*</xsl:otherwise>
                      </xsl:choose>' );</xsl:attribute>
                    <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                        <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                          <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                        </xsl:when>
                        <xsl:otherwise>*</xsl:otherwise>
                      </xsl:choose>' );</xsl:attribute>
                  </xsl:when>
                </xsl:choose>
                <xsl:choose>
                  <xsl:when test="(./xf:ValidationError/@tagname='Question') or (./xf:ValidationError/@tagname='wcmprop.displayname')">
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">22</xsl:when>
                        <xsl:otherwise>3456</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                  </xsl:when>
                  <xsl:otherwise>
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">3457</xsl:when>
                        <xsl:otherwise>3456</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                  </xsl:otherwise>
                </xsl:choose>
                <xsl:attribute name="name">Question/wcmprop.displayname</xsl:attribute>
                <xsl:value-of select="''"/>
              </textarea>
            </xsl:if>
            <xsl:if test="Question!='' or ($editmode!='create')">
              <textarea wrap="true" class="urTedWhl" rows="5" cols="47" id="field_1020421170431">
                <xsl:choose>
                  <xsl:when test="$accessibilitymode='true'">
                    <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                        <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                          <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                        </xsl:when>
                        <xsl:otherwise>*</xsl:otherwise>
                      </xsl:choose>' );</xsl:attribute>
                    <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                        <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                          <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                        </xsl:when>
                        <xsl:otherwise>*</xsl:otherwise>
                      </xsl:choose>' );</xsl:attribute>
                  </xsl:when>
                </xsl:choose>
                <xsl:choose>
                  <xsl:when test="(./xf:ValidationError/@tagname='Question') or (./xf:ValidationError/@tagname='wcmprop.displayname')">
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">22</xsl:when>
                        <xsl:otherwise>3456</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                  </xsl:when>
                  <xsl:otherwise>
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">3457</xsl:when>
                        <xsl:otherwise>3456</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                  </xsl:otherwise>
                </xsl:choose>
                <xsl:attribute name="name">Question/wcmprop.displayname</xsl:attribute>
                <xsl:value-of select="Question"/>
              </textarea>
            </xsl:if>
            <!--
                 error block for Question
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1020421170431']" name="errText"/>
              <xsl:with-param select="'Question'" name="variable"/>
              <xsl:with-param select="'20'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <td height="5%" valign="top" width="23%"/>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;7%&quot; valign=&quot;top&quot; width=&quot;12%&quot;/&gt;&lt;td height=&quot;7%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;7%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;12%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;27%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="5%" valign="top" width="12%" rowspan="1" colspan="1">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <span style="font-family:Arial;">
                    <xsl:choose>
                      <xsl:when test="./xf:ValidationError/@tagname='changed'">
                        <span class="urTxtNeg">
                          <label ffoorr="field_1020421170439" onclick="xf_focusLabel(this);" id="label_field_1020421170439">
                            <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1020421170433']"/>
                          </label>
                        </span>
                      </xsl:when>
                      <xsl:otherwise>
                        <label ffoorr="field_1020421170439" onclick="xf_focusLabel(this);" id="label_field_1020421170439">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1020421170433']"/>
                        </label>
                      </xsl:otherwise>
                    </xsl:choose>
                  </span>
                </nobr>
              </span>
            </p>
          </td>
          <td height="5%" valign="top" width="2%"/>
          <td height="5%" valign="top" width="63%" rowspan="1" colspan="2">
            <!--
                 ADDING ITEM CALL FOR item2
            -->
            <xsl:call-template name="item2"/>
          </td>
          <td height="5%" valign="top" width="23%"/>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;12%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;27%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="5%" valign="top" width="12%" rowspan="1" colspan="1">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <span style="font-family:Arial;">
                    <xsl:choose>
                      <xsl:when test="./xf:ValidationError/@tagname='Answer'">
                        <span class="urTxtNeg">
                          <label ffoorr="field_1020421170437" onclick="xf_focusLabel(this);" id="label_field_1020421170437">
                            <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1020421170436']"/>
                          </label>
                        </span>
                      </xsl:when>
                      <xsl:otherwise>
                        <label ffoorr="field_1020421170437" onclick="xf_focusLabel(this);" id="label_field_1020421170437">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1020421170436']"/>
                        </label>
                      </xsl:otherwise>
                    </xsl:choose>
                  </span>
                </nobr>
              </span>
            </p>
          </td>
          <td height="5%" valign="top" width="2%"/>
          <td height="11%" valign="top" width="63%" rowspan="2" colspan="2">
            <!--
                 text area for element Answer
            -->
            <xsl:if test="Answer='' and ($editmode='create')">
              <textarea name="Answer" wrap="true" class="urTedWhl" rows="5" cols="47" id="field_1020421170437">
                <xsl:choose>
                  <xsl:when test="$accessibilitymode='true'">
                    <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                        <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                          <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                        </xsl:when>
                        <xsl:otherwise>*</xsl:otherwise>
                      </xsl:choose>' );</xsl:attribute>
                    <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                        <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                          <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                        </xsl:when>
                        <xsl:otherwise>*</xsl:otherwise>
                      </xsl:choose>' );</xsl:attribute>
                  </xsl:when>
                </xsl:choose>
                <xsl:choose>
                  <xsl:when test="./xf:ValidationError/@tagname='Answer'">
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">40</xsl:when>
                        <xsl:otherwise>3465</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                  </xsl:when>
                  <xsl:otherwise>
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">3466</xsl:when>
                        <xsl:otherwise>3465</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                  </xsl:otherwise>
                </xsl:choose>
                <xsl:value-of select="''"/>
              </textarea>
            </xsl:if>
            <xsl:if test="Answer!='' or ($editmode!='create')">
              <textarea name="Answer" wrap="true" class="urTedWhl" rows="5" cols="47" id="field_1020421170437">
                <xsl:choose>
                  <xsl:when test="$accessibilitymode='true'">
                    <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                        <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                          <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                        </xsl:when>
                        <xsl:otherwise>*</xsl:otherwise>
                      </xsl:choose>' );</xsl:attribute>
                    <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                        <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                          <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                        </xsl:when>
                        <xsl:otherwise>*</xsl:otherwise>
                      </xsl:choose>' );</xsl:attribute>
                  </xsl:when>
                </xsl:choose>
                <xsl:choose>
                  <xsl:when test="./xf:ValidationError/@tagname='Answer'">
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">40</xsl:when>
                        <xsl:otherwise>3465</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                  </xsl:when>
                  <xsl:otherwise>
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">3466</xsl:when>
                        <xsl:otherwise>3465</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                  </xsl:otherwise>
                </xsl:choose>
                <xsl:value-of select="Answer"/>
              </textarea>
            </xsl:if>
          </td>
          <td height="5%" valign="top" width="23%"/>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;7%&quot; valign=&quot;top&quot; width=&quot;12%&quot;/&gt;&lt;td height=&quot;7%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;7%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;12%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;27%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="5%" valign="top" width="12%" rowspan="1" colspan="1">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <span style="font-family:Arial;">
                    <xsl:choose>
                      <xsl:when test="./xf:ValidationError/@tagname='readmore'">
                        <span class="urTxtNeg">
                          <label ffoorr="field_1020421170441" onclick="xf_focusLabel(this);" id="label_field_1020421170441">
                            <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1020421170423']"/>
                          </label>
                        </span>
                      </xsl:when>
                      <xsl:otherwise>
                        <label ffoorr="field_1020421170441" onclick="xf_focusLabel(this);" id="label_field_1020421170441">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1020421170423']"/>
                        </label>
                      </xsl:otherwise>
                    </xsl:choose>
                  </span>
                </nobr>
              </span>
            </p>
          </td>
          <td height="5%" valign="top" width="2%"/>
          <td height="5%" valign="top" width="63%" rowspan="1" colspan="2">
            <nobr>
              <!--
                   field readmore
              -->
              <xsl:choose>
                <xsl:when test="readmore='' and ($editmode='create')">
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='readmore'">
                      <input name="readmore" size="45" type="text" value="" class="urEdfiTxtEnbl" id="field_1020421170441">
                        <xsl:attribute name="title">
                          <xsl:value-of select="readmore"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1020421170441']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'">43</xsl:when>
                            <xsl:otherwise>3467</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="readmore" size="45" type="text" value="" class="urEdfTxtEnbl" id="field_1020421170441">
                        <xsl:attribute name="title">
                          <xsl:value-of select="readmore"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1020421170441']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">3467</xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                  <!--
                       error block for readmore
                  -->
                  <xsl:call-template name="error_block_template">
                    <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1020421170441']" name="errText"/>
                    <xsl:with-param select="'readmore'" name="variable"/>
                    <xsl:with-param select="'42'" name="tabindex"/>
                  </xsl:call-template>
                </xsl:when>
                <xsl:otherwise>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='readmore'">
                      <input name="readmore" size="45" type="text" class="urEdfiTxtEnbl" id="field_1020421170441">
                        <xsl:attribute name="title">
                          <xsl:value-of select="readmore"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1020421170441']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'">43</xsl:when>
                            <xsl:otherwise>3467</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="readmore"/>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="readmore" size="45" type="text" class="urEdfTxtEnbl" id="field_1020421170441">
                        <xsl:attribute name="title">
                          <xsl:value-of select="readmore"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1020421170441']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">3467</xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="readmore"/>
                        </xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                  <!--
                       error block for readmore
                  -->
                  <xsl:call-template name="error_block_template">
                    <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1020421170441']" name="errText"/>
                    <xsl:with-param select="'readmore'" name="variable"/>
                    <xsl:with-param select="'42'" name="tabindex"/>
                  </xsl:call-template>
                </xsl:otherwise>
              </xsl:choose>
            </nobr>
          </td>
          <td height="5%" valign="top" width="23%"/>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;12%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;27%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;5%&quot; valign=&quot;top&quot; width=&quot;12%&quot;/&gt;&lt;td height=&quot;5%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;</xsl:text>
          <td height="5%" valign="top" width="27%" rowspan="1" colspan="1">
            <!--
                 ADDING ITEM CALL FOR item3
            -->
            <xsl:call-template name="item3"/>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;5%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;&lt;td height=&quot;5%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;41%&quot; valign=&quot;top&quot; width=&quot;12%&quot;/&gt;&lt;td height=&quot;41%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;41%&quot; valign=&quot;top&quot; width=&quot;27%&quot;/&gt;&lt;td height=&quot;41%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;&lt;td height=&quot;41%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;</xsl:text>
        </tr>
      </table>
      <input name="mandatoryFields" type="hidden" value="wcmprop.displayname;created;Question;creator"/>
    </xsl:template>
    <!--
         MAIN ITEM TEMPLATE
    -->
    <xsl:template name="item1">
      <!--
           grouping with id 1244197629083
      -->
      <p>
        <nobr>
          <!--
               field created
          -->
          <xsl:choose>
            <xsl:when test="($editmode='create') and not(./xf:ValidationError)">
              <xsl:choose>
                <xsl:when test="./xf:ValidationError/@tagname='created'">
                  <input name="created" size="10" type="text" class="urEdfiTxtEnbl" id="field_1020421170430">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'">
                        <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                        <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                      </xsl:when>
                    </xsl:choose>
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">9</xsl:when>
                        <xsl:otherwise>3450</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                    <xsl:attribute name="value">
                      <xsl:value-of select="$date"/>
                    </xsl:attribute>
                  </input>
                </xsl:when>
                <xsl:otherwise>
                  <input name="created" size="10" type="text" class="urEdfTxtEnbl" id="field_1020421170430">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'">
                        <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                        <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                      </xsl:when>
                    </xsl:choose>
                    <xsl:attribute name="tabindex">3450</xsl:attribute>
                    <xsl:attribute name="value">
                      <xsl:value-of select="$date"/>
                    </xsl:attribute>
                  </input>
                </xsl:otherwise>
              </xsl:choose>
              <!--
                   error block for created
              -->
              <xsl:call-template name="error_block_template">
                <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1020421170430']" name="errText"/>
                <xsl:with-param select="'created'" name="variable"/>
                <xsl:with-param select="'8'" name="tabindex"/>
              </xsl:call-template>
            </xsl:when>
            <xsl:otherwise>
              <xsl:choose>
                <xsl:when test="./xf:ValidationError/@tagname='created'">
                  <input name="created" size="10" type="text" class="urEdfiTxtEnbl" id="field_1020421170430">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'">
                        <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                        <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                      </xsl:when>
                    </xsl:choose>
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">9</xsl:when>
                        <xsl:otherwise>3450</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                    <xsl:attribute name="value">
                      <xsl:value-of select="created"/>
                    </xsl:attribute>
                  </input>
                </xsl:when>
                <xsl:otherwise>
                  <input name="created" size="10" type="text" class="urEdfTxtEnbl" id="field_1020421170430">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'">
                        <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                        <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                      </xsl:when>
                    </xsl:choose>
                    <xsl:attribute name="tabindex">3450</xsl:attribute>
                    <xsl:attribute name="value">
                      <xsl:value-of select="created"/>
                    </xsl:attribute>
                  </input>
                </xsl:otherwise>
              </xsl:choose>
              <!--
                   error block for created
              -->
              <xsl:call-template name="error_block_template">
                <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1020421170430']" name="errText"/>
                <xsl:with-param select="'created'" name="variable"/>
                <xsl:with-param select="'8'" name="tabindex"/>
              </xsl:call-template>
            </xsl:otherwise>
          </xsl:choose>
        </nobr>
        <span class="urTxtStd">
          <span style="font-family:Arial;">
            <xsl:call-template name="outputvalue">
              <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1023287893449']" name="value"/>
            </xsl:call-template>
          </span>
        </span>
        <span class="urTxtStd">
          <span style="font-family:Arial;">
            <xsl:choose>
              <xsl:when test="./xf:ValidationError/@tagname='creator'">
                <span class="urTxtNeg">
                  <label ffoorr="field_1020421170429" onclick="xf_focusLabel(this);" id="label_field_1020421170429">
                    <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1244197629082']"/>
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'"> *</xsl:when>
                      <xsl:otherwise> *</xsl:otherwise>
                    </xsl:choose>
                  </label>
                </span>
              </xsl:when>
              <xsl:otherwise>
                <label ffoorr="field_1020421170429" onclick="xf_focusLabel(this);" id="label_field_1020421170429">
                  <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1244197629082']"/>
                  <span class="urTxtNeg">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'"> *</xsl:when>
                      <xsl:otherwise> *</xsl:otherwise>
                    </xsl:choose>
                  </span>
                </label>
              </xsl:otherwise>
            </xsl:choose>
          </span>
        </span>
        <span class="urTxtStd">
          <span style="font-family:Arial;">
            <xsl:call-template name="outputvalue">
              <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1076491440711']" name="value"/>
            </xsl:call-template>
          </span>
        </span>
        <input name="creator" type="hidden" id="field_1020421170429">
          <xsl:choose>
            <xsl:when test="$accessibilitymode='true'">
              <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                  <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                    <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                  </xsl:when>
                  <xsl:otherwise>*</xsl:otherwise>
                </xsl:choose>' );</xsl:attribute>
              <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                  <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                    <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                  </xsl:when>
                  <xsl:otherwise>*</xsl:otherwise>
                </xsl:choose>' );</xsl:attribute>
            </xsl:when>
          </xsl:choose>
          <xsl:attribute name="tabindex"/>
          <xsl:attribute name="value">
            <xsl:choose>
              <xsl:when test="creator='' and ($editmode='create')">
                <xsl:value-of select="$sap_user_id"/>
              </xsl:when>
              <xsl:otherwise>
                <xsl:value-of select="creator"/>
              </xsl:otherwise>
            </xsl:choose>
          </xsl:attribute>
        </input>
        <nobr>
          <!--
               field creator_userdn___
          -->
          <xsl:choose>
            <xsl:when test="($editmode='create') and not(./xf:ValidationError)">
              <xsl:choose>
                <xsl:when test="./xf:ValidationError/@tagname='creator_userdn___'">
                  <input name="creator_userdn___" size="23" type="text" class="urEdfiTxtEnbl" id="field_1020421170429_userdn___">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'">
                        <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                        <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                      </xsl:when>
                    </xsl:choose>
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">17</xsl:when>
                        <xsl:otherwise>3454</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                    <xsl:attribute name="value">
                      <xsl:value-of select="$sap_user"/>
                    </xsl:attribute>
                  </input>
                </xsl:when>
                <xsl:otherwise>
                  <input name="creator_userdn___" size="23" type="text" class="urEdfTxtEnbl" id="field_1020421170429_userdn___">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'">
                        <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                        <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                      </xsl:when>
                    </xsl:choose>
                    <xsl:attribute name="tabindex">3454</xsl:attribute>
                    <xsl:attribute name="value">
                      <xsl:value-of select="$sap_user"/>
                    </xsl:attribute>
                  </input>
                </xsl:otherwise>
              </xsl:choose>
              <!--
                   error block for creator_userdn___
              -->
              <xsl:call-template name="error_block_template">
                <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1020421170429_userdn___']" name="errText"/>
                <xsl:with-param select="'creator_userdn___'" name="variable"/>
                <xsl:with-param select="'16'" name="tabindex"/>
              </xsl:call-template>
            </xsl:when>
            <xsl:otherwise>
              <xsl:choose>
                <xsl:when test="./xf:ValidationError/@tagname='creator_userdn___'">
                  <input name="creator_userdn___" size="23" type="text" class="urEdfiTxtEnbl" id="field_1020421170429_userdn___">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'">
                        <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                        <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                      </xsl:when>
                    </xsl:choose>
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">17</xsl:when>
                        <xsl:otherwise>3454</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                    <xsl:attribute name="value">
                      <xsl:value-of select="creator_userdn___"/>
                    </xsl:attribute>
                  </input>
                </xsl:when>
                <xsl:otherwise>
                  <input name="creator_userdn___" size="23" type="text" class="urEdfTxtEnbl" id="field_1020421170429_userdn___">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'">
                        <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                        <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                      </xsl:when>
                    </xsl:choose>
                    <xsl:attribute name="tabindex">3454</xsl:attribute>
                    <xsl:attribute name="value">
                      <xsl:value-of select="creator_userdn___"/>
                    </xsl:attribute>
                  </input>
                </xsl:otherwise>
              </xsl:choose>
              <!--
                   error block for creator_userdn___
              -->
              <xsl:call-template name="error_block_template">
                <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1020421170429_userdn___']" name="errText"/>
                <xsl:with-param select="'creator_userdn___'" name="variable"/>
                <xsl:with-param select="'16'" name="tabindex"/>
              </xsl:call-template>
            </xsl:otherwise>
          </xsl:choose>
        </nobr>
        <br/>
      </p>
    </xsl:template>
    <!--
         MAIN ITEM TEMPLATE
    -->
    <xsl:template name="item2">
      <!--
           grouping with id 1244034165367
      -->
      <p>
        <nobr>
          <!--
               field changed
          -->
          <xsl:choose>
            <xsl:when test="($editmode='create') and not(./xf:ValidationError)">
              <xsl:choose>
                <xsl:when test="./xf:ValidationError/@tagname='changed'">
                  <input name="changed" size="10" type="text" class="urEdfiTxtEnbl" id="field_1020421170439">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'">
                        <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                        <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                      </xsl:when>
                    </xsl:choose>
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">27</xsl:when>
                        <xsl:otherwise>3459</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                    <xsl:attribute name="value">
                      <xsl:value-of select="$date"/>
                    </xsl:attribute>
                  </input>
                </xsl:when>
                <xsl:otherwise>
                  <input name="changed" size="10" type="text" class="urEdfTxtEnbl" id="field_1020421170439">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'">
                        <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                        <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                      </xsl:when>
                    </xsl:choose>
                    <xsl:attribute name="tabindex">3459</xsl:attribute>
                    <xsl:attribute name="value">
                      <xsl:value-of select="$date"/>
                    </xsl:attribute>
                  </input>
                </xsl:otherwise>
              </xsl:choose>
              <!--
                   error block for changed
              -->
              <xsl:call-template name="error_block_template">
                <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1020421170439']" name="errText"/>
                <xsl:with-param select="'changed'" name="variable"/>
                <xsl:with-param select="'26'" name="tabindex"/>
              </xsl:call-template>
            </xsl:when>
            <xsl:otherwise>
              <xsl:choose>
                <xsl:when test="./xf:ValidationError/@tagname='changed'">
                  <input name="changed" size="10" type="text" class="urEdfiTxtEnbl" id="field_1020421170439">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'">
                        <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                        <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                      </xsl:when>
                    </xsl:choose>
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">27</xsl:when>
                        <xsl:otherwise>3459</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                    <xsl:attribute name="value">
                      <xsl:value-of select="changed"/>
                    </xsl:attribute>
                  </input>
                </xsl:when>
                <xsl:otherwise>
                  <input name="changed" size="10" type="text" class="urEdfTxtEnbl" id="field_1020421170439">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'">
                        <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                        <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                      </xsl:when>
                    </xsl:choose>
                    <xsl:attribute name="tabindex">3459</xsl:attribute>
                    <xsl:attribute name="value">
                      <xsl:value-of select="changed"/>
                    </xsl:attribute>
                  </input>
                </xsl:otherwise>
              </xsl:choose>
              <!--
                   error block for changed
              -->
              <xsl:call-template name="error_block_template">
                <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1020421170439']" name="errText"/>
                <xsl:with-param select="'changed'" name="variable"/>
                <xsl:with-param select="'26'" name="tabindex"/>
              </xsl:call-template>
            </xsl:otherwise>
          </xsl:choose>
        </nobr>
        <span class="urTxtStd">
          <span style="font-family:Arial;">
            <xsl:call-template name="outputvalue">
              <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1023287893457']" name="value"/>
            </xsl:call-template>
          </span>
        </span>
        <span class="urTxtStd">
          <span style="font-family:Arial;">
            <xsl:choose>
              <xsl:when test="./xf:ValidationError/@tagname='changer'">
                <span class="urTxtNeg">
                  <label ffoorr="field_1020421170435" onclick="xf_focusLabel(this);" id="label_field_1020421170435">
                    <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1020421170434']"/>
                  </label>
                </span>
              </xsl:when>
              <xsl:otherwise>
                <label ffoorr="field_1020421170435" onclick="xf_focusLabel(this);" id="label_field_1020421170435">
                  <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1020421170434']"/>
                </label>
              </xsl:otherwise>
            </xsl:choose>
          </span>
        </span>
        <span class="urTxtStd">
          <span style="font-family:Arial;">
            <xsl:call-template name="outputvalue">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_1244034165264']" name="value"/>
            </xsl:call-template>
          </span>
        </span>
        <input name="changer" type="hidden" id="field_1020421170435">
          <xsl:choose>
            <xsl:when test="$accessibilitymode='true'">
              <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                  <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                    <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                  </xsl:when>
                  <xsl:otherwise>*</xsl:otherwise>
                </xsl:choose>' );</xsl:attribute>
              <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                  <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                    <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                  </xsl:when>
                  <xsl:otherwise>*</xsl:otherwise>
                </xsl:choose>' );</xsl:attribute>
            </xsl:when>
          </xsl:choose>
          <xsl:attribute name="tabindex"/>
          <xsl:attribute name="value">
            <xsl:choose>
              <xsl:when test="changer='' and ($editmode='create')">
                <xsl:value-of select="$sap_user_id"/>
              </xsl:when>
              <xsl:otherwise>
                <xsl:value-of select="changer"/>
              </xsl:otherwise>
            </xsl:choose>
          </xsl:attribute>
        </input>
        <nobr>
          <!--
               field changer_userdn___
          -->
          <xsl:choose>
            <xsl:when test="($editmode='create') and not(./xf:ValidationError)">
              <xsl:choose>
                <xsl:when test="./xf:ValidationError/@tagname='changer_userdn___'">
                  <input name="changer_userdn___" size="25" type="text" class="urEdfiTxtEnbl" id="field_1020421170435_userdn___">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'">
                        <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                        <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                      </xsl:when>
                    </xsl:choose>
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">35</xsl:when>
                        <xsl:otherwise>3463</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                    <xsl:attribute name="value">
                      <xsl:value-of select="$sap_user"/>
                    </xsl:attribute>
                  </input>
                </xsl:when>
                <xsl:otherwise>
                  <input name="changer_userdn___" size="25" type="text" class="urEdfTxtEnbl" id="field_1020421170435_userdn___">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'">
                        <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                        <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                      </xsl:when>
                    </xsl:choose>
                    <xsl:attribute name="tabindex">3463</xsl:attribute>
                    <xsl:attribute name="value">
                      <xsl:value-of select="$sap_user"/>
                    </xsl:attribute>
                  </input>
                </xsl:otherwise>
              </xsl:choose>
              <!--
                   error block for changer_userdn___
              -->
              <xsl:call-template name="error_block_template">
                <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1020421170435_userdn___']" name="errText"/>
                <xsl:with-param select="'changer_userdn___'" name="variable"/>
                <xsl:with-param select="'34'" name="tabindex"/>
              </xsl:call-template>
            </xsl:when>
            <xsl:otherwise>
              <xsl:choose>
                <xsl:when test="./xf:ValidationError/@tagname='changer_userdn___'">
                  <input name="changer_userdn___" size="25" type="text" class="urEdfiTxtEnbl" id="field_1020421170435_userdn___">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'">
                        <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                        <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                      </xsl:when>
                    </xsl:choose>
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">35</xsl:when>
                        <xsl:otherwise>3463</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                    <xsl:attribute name="value">
                      <xsl:value-of select="changer_userdn___"/>
                    </xsl:attribute>
                  </input>
                </xsl:when>
                <xsl:otherwise>
                  <input name="changer_userdn___" size="25" type="text" class="urEdfTxtEnbl" id="field_1020421170435_userdn___">
                    <xsl:choose>
                      <xsl:when test="$accessibilitymode='true'">
                        <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                        <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                            <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                              <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                            </xsl:when>
                            <xsl:otherwise>*</xsl:otherwise>
                          </xsl:choose>' );</xsl:attribute>
                      </xsl:when>
                    </xsl:choose>
                    <xsl:attribute name="tabindex">3463</xsl:attribute>
                    <xsl:attribute name="value">
                      <xsl:value-of select="changer_userdn___"/>
                    </xsl:attribute>
                  </input>
                </xsl:otherwise>
              </xsl:choose>
              <!--
                   error block for changer_userdn___
              -->
              <xsl:call-template name="error_block_template">
                <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1020421170435_userdn___']" name="errText"/>
                <xsl:with-param select="'changer_userdn___'" name="variable"/>
                <xsl:with-param select="'34'" name="tabindex"/>
              </xsl:call-template>
            </xsl:otherwise>
          </xsl:choose>
        </nobr>
        <br/>
      </p>
    </xsl:template>
    <!--
         MAIN ITEM TEMPLATE
    -->
    <xsl:template name="item3">
      <!--
           grouping with id 1076577218046
      -->
      <p>
        <nobr>
          <a class="urBtnEmph urTxtStd">
            <xsl:attribute name="tabindex">3469</xsl:attribute>
            <xsl:if test="'true'">
              <xsl:attribute name="href">javascript:HrefSubmit('save','<xsl:value-of select="normalize-space(xf:resourceridesc)"/>');</xsl:attribute>
              <xsl:attribute name="onkeypress">javascript:if(event.keyCode==32)this.click();</xsl:attribute>
            </xsl:if>
            <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1023287893429']"/>
          </a>
          <span class="urTxtStd">
            <xsl:call-template name="outputvalue">
              <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1076577217876']" name="value"/>
            </xsl:call-template>
          </span>
          <a class="urBtnStd urTxtStd">
            <xsl:attribute name="tabindex">3471</xsl:attribute>
            <xsl:if test="'true'">
              <xsl:attribute name="href">javascript:self.document.rootform__.reset();</xsl:attribute>
              <xsl:attribute name="onkeypress">javascript:if(event.keyCode==32)this.click();</xsl:attribute>
            </xsl:if>
            <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1023287893431']"/>
          </a>
          <span class="urTxtStd">
            <xsl:call-template name="outputvalue">
              <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1076577218045']" name="value"/>
            </xsl:call-template>
          </span>
          <a class="urBtnStd urTxtStd">
            <xsl:attribute name="tabindex">3473</xsl:attribute>
            <xsl:if test="'true'">
              <xsl:attribute name="href">javascript:HrefSubmit('cancel','<xsl:value-of select="normalize-space(xf:resourceridesc)"/>');</xsl:attribute>
              <xsl:attribute name="onkeypress">javascript:if(event.keyCode==32)this.click();</xsl:attribute>
            </xsl:if>
            <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1023287893433']"/>
          </a>
          <br/>
        </nobr>
      </p>
    </xsl:template>
    <!--
         ROOT TEMPLATE
    -->
    <xsl:template match="FAQs">
      <!--
           HTML HEADER
      -->
      <html>
        <!--
             JAVA SCRIPT SECTION
        -->
        <script language="JavaScript">
          <xsl:comment>
          function _htmlb_external_submit_(){window.location.reload();} 
 function open_url(url){var tmpurl="";if (url.charAt(0) == '/') {tmpurl=encodeXmlFormsUri(url);} else {tmpurl=encodeURI(url);}var xinfo="";xinfo=window.open(tmpurl)} 
 function open_url_with_params(url,params){var xinfo="";xinfo=window.open(url,'_blank',params)} 
 function getProtAndHost(){
   return window.location.protocol+'//'+window.location.host
}

 function HrefSubmit(event, resource){ 
try{
 xf_beforeSavingSeperatedEditors();
} catch(e) {
  alert('error while trying to save editors, id98435f'); 
}
 document.rootform__.submit_event.value=event;document.rootform__.submit_resource.value=resource;document.rootform__.submit();} var x=location.hostname.indexOf('.')+1;if (x>0) document.domain=location.hostname.substring(x);var popup_emptydoc = '/htmlb/jslib/emptyhover.html';
 function encodeXmlFormsUri(uri) {if (uri == null) return null;var parts = uri.split('/');var i;uri = '';for (i=0;i&lt;parts.length;i++) {if (i&gt;0) {uri += '/';}uri += encodeURIComponent(parts[i]);}return uri;}<xsl:if test="$authorpreviewresource!=''">open_url('<xsl:value-of select="$previewservlet"/>?XMLFormID='+encodeXmlFormsUri('FAQs')+'&amp;show/test='+encodeXmlFormsUri('<xsl:value-of select="$authorpreviewresource"/>')+'&amp;authorpreview=true');</xsl:if>
          
          //</xsl:comment>
        </script>
        <!--
             CSS REFERENCE
        -->
        <link rel="stylesheet" type="text/css">
          <xsl:attribute name="href">
            <xsl:value-of select="$cssurl"/>/<xsl:value-of select="$css"/>
          </xsl:attribute>
        </link>
        <head>
          <title>
            <xsl:choose>
              <xsl:when test="$resources/TEXT[@AKEY='tit_global_1020421170420_dn']!=''">
                <xsl:value-of select="$resources/TEXT[@AKEY='tit_global_1020421170420_dn']"/>
              </xsl:when>
              <xsl:when test="$resources/TEXT[@AKEY='lbl_global_1020421170420_dn']!=''">
                <xsl:value-of select="$resources/TEXT[@AKEY='lbl_global_1020421170420_dn']"/>
              </xsl:when>
              <xsl:when test="$resources/TEXT[@AKEY='tit_global_displayName']!=''">
                <xsl:value-of select="$resources/TEXT[@AKEY='tit_global_displayName']"/>
              </xsl:when>
              <xsl:when test="$resources/TEXT[@AKEY='lbl_global_displayName']!=''">
                <xsl:value-of select="$resources/TEXT[@AKEY='lbl_global_displayName']"/>
              </xsl:when>
              <xsl:otherwise>Freqently Asked Questions</xsl:otherwise>
            </xsl:choose>
          </title>
        </head>
        <style type="text/css">body {}</style>
        <body class="prtlBody urFontBaseFam urScrl urGrpBdyBoxBgColor">
          <xsl:if test="$docorientation!=''">
            <xsl:attribute name="dir">
              <xsl:value-of select="$docorientation"/>
            </xsl:attribute>
          </xsl:if>
          <form onreset="javascript:resetHTMLEditors()" name="rootform__">
            <xsl:if test="./xf:XMLForm/xf:action">
              <xsl:attribute name="action">
                <xsl:value-of select="./xf:XMLForm/xf:action"/>
              </xsl:attribute>
            </xsl:if>
            <xsl:choose>
              <xsl:when test="./xf:XMLForm/xf:method">
                <xsl:attribute name="method">
                  <xsl:value-of select="./xf:XMLForm/xf:method"/>
                </xsl:attribute>
              </xsl:when>
              <xsl:otherwise>
                <xsl:attribute name="method">POST</xsl:attribute>
              </xsl:otherwise>
            </xsl:choose>
            <!--
                 HIDDEN FORM FIELDS GENERATION
            -->
            <xsl:apply-templates select="xf:formsparameters"/>
            <input name="submit_event" type="hidden" value=""/>
            <input name="submit_resource" type="hidden" value=""/>
            <!--
                 MAIN ITEM TEMPLATE CALL
            -->
            <xsl:call-template name="item"/>
            <xsl:for-each select="/FAQs/xf:formsparameters/xf:param[@name='XMLFormDataResName']">
              <!--
                   resource name
              -->
              <xsl:if test="@type='visible'">
                <input name="XMLFormDataResName" type="hidden" id="field_null">
                  <xsl:choose>
                    <xsl:when test="$accessibilitymode='true'">
                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                          </xsl:when>
                          <xsl:otherwise>*</xsl:otherwise>
                        </xsl:choose>' );</xsl:attribute>
                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                          </xsl:when>
                          <xsl:otherwise>*</xsl:otherwise>
                        </xsl:choose>' );</xsl:attribute>
                    </xsl:when>
                  </xsl:choose>
                  <xsl:attribute name="tabindex">3445</xsl:attribute>
                  <xsl:attribute name="value">
                    <xsl:if test=".=''">
                      <xsl:value-of select="$guid"/>
                    </xsl:if>
                    <xsl:if test=".!=''">
                      <xsl:value-of select="."/>
                    </xsl:if>
                  </xsl:attribute>
                </input>
              </xsl:if>
              <xsl:if test="@type='hidden'">
                <xsl:value-of select="."/>
              </xsl:if>
            </xsl:for-each>
          </form>
        </body>
        <script language="JavaScript">
          <xsl:attribute name="src"/>
          <xsl:attribute name="src">
            <xsl:value-of select="$xmlformsroot"/>/javascript/debug-functions.js</xsl:attribute>
        </script>
        <script language="JavaScript">
          <xsl:attribute name="src"/>
          <xsl:attribute name="src">
            <xsl:value-of select="$xmlformsroot"/>/javascript/xmlforms-utils.js</xsl:attribute>
        </script>
        <script language="JavaScript">
          <xsl:comment>
          var multiValuedFields=new Array();
          //</xsl:comment>
        </script>
      </html>
    </xsl:template>
  </xsl:stylesheet>