<?xml version="1.0" encoding="UTF-8"?>
  <!--
       Description   Edit XSL Transformation for Form Project SAP_APP_FAQs
       Copyright     Copyright (c) SAP AG 2010
       Author        XML Forms Document Builder 1.0
       Version       3.3 2010-07-06
  -->
  <!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">
    <xsl:include href="wcm://etc/xmlforms/htmledit/htmledit.xsl"/>
    <!--
         CUSTOM PARAMETERS SECTION
    -->
    <xsl:param name="ext_params_user"/>
    <xsl:param name="ext_params_date"/>
    <xsl:param name="ext_params_image_ep"/>
    <!--
         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">SAP_APP_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), '/SAP_APP_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">
      <table width="100%" cellpadding="1" cellspacing="1">
        <tr>
          <td height="3%" valign="top" width="2%" rowspan="1" colspan="1"><img border="0">
              <xsl:attribute name="alt"/>
              <xsl:attribute name="title"/>
              <xsl:attribute name="src">
                <xsl:value-of select="$contentaccess"/>/etc/public/mimes/images/2_people_doc_ circular_arrow.gif</xsl:attribute>
            </img>
          </td>
          <td height="3%" valign="top" width="2%" rowspan="1" colspan="1"><p>
              <span class="urTxtStd">
                <xsl:call-template name="outputvalue">
                  <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1079946057987']" name="value"/>
                </xsl:call-template>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="96%" rowspan="1" colspan="9"><p>
              <span class="urTxtH2">
                <span>
                  <xsl:attribute name="tabindex">
                    <xsl:if test="$accessibilitymode='true'">11722</xsl:if>
                  </xsl:attribute>
                  <nobr>
                    <xsl:call-template name="outputvalue">
                      <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1020421170427']" name="value"/>
                    </xsl:call-template>
                  </nobr>
                </span>
              </span>
            </p>
          </td>
        </tr>
        <tr>
          <td height="1" bgcolor="black" valign="top" width="100%" rowspan="1" colspan="11"></td>
        </tr>
        <tr>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="4%"></td>
          <td height="1%" valign="top" width="51%"></td>
          <td height="1%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="2%" rowspan="1" colspan="1"><p>
              <span class="urTxtStd">
                <xsl:call-template name="outputvalue">
                  <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1023287893445']" name="value"/>
                </xsl:call-template>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="4%"></td>
          <td height="3%" valign="top" width="51%"></td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="4%" rowspan="1" colspan="2"><p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="(./xf:ValidationError/@tagname='name') or (./xf:ValidationError/@tagname='wcmprop.default:displayname')">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1083757112340" onclick="xf_focusLabel(this);" id="label_field_1083757112340">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1083757112339']" name="value"/>
                          </xsl:call-template>
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'"> *</xsl:when>
                            <xsl:otherwise> *</xsl:otherwise>
                          </xsl:choose>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1083757112340" onclick="xf_focusLabel(this);" id="label_field_1083757112340">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1083757112339']" name="value"/>
                        </xsl:call-template>
                        <span class="urTxtNeg">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'"> *</xsl:when>
                            <xsl:otherwise> *</xsl:otherwise>
                          </xsl:choose>
                        </span>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="7%" valign="top" width="96%" rowspan="2" colspan="9"><!--
                 text area for element name
            -->
            <xsl:if test="name='' and ($editmode='create')">
              <textarea wrap="true" class="urTedWhl" rows="5" cols="47" id="field_1083757112340">
                <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='name') or (./xf:ValidationError/@tagname='wcmprop.default:displayname')">
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">12</xsl:when>
                        <xsl:otherwise>11725</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                  </xsl:when>
                  <xsl:otherwise>
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">11726</xsl:when>
                        <xsl:otherwise>11725</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                  </xsl:otherwise>
                </xsl:choose>
                <xsl:attribute name="name">name/wcmprop.default:displayname</xsl:attribute>
                <xsl:value-of select="''"/>
              </textarea>
            </xsl:if>
            <xsl:if test="name!='' or ($editmode!='create')">
              <textarea wrap="true" class="urTedWhl" rows="5" cols="47" id="field_1083757112340">
                <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='name') or (./xf:ValidationError/@tagname='wcmprop.default:displayname')">
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">12</xsl:when>
                        <xsl:otherwise>11725</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                  </xsl:when>
                  <xsl:otherwise>
                    <xsl:attribute name="tabindex">
                      <xsl:choose>
                        <xsl:when test="$accessibilitymode='true'">11726</xsl:when>
                        <xsl:otherwise>11725</xsl:otherwise>
                      </xsl:choose>
                    </xsl:attribute>
                  </xsl:otherwise>
                </xsl:choose>
                <xsl:attribute name="name">name/wcmprop.default:displayname</xsl:attribute>
                <xsl:value-of select="name"/>
              </textarea>
            </xsl:if>
            <!--
                 error block for name
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1083757112340']" name="errText"/>
              <xsl:with-param select="'name'" name="variable"/>
              <xsl:with-param select="'10'" name="tabindex"/>
            </xsl:call-template>
          </td>
        </tr>
        <tr>
          <td height="4%" valign="top" width="2%"></td>
          <td height="4%" valign="top" width="2%"></td>
        </tr>
        <tr>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="4%"></td>
          <td height="1%" valign="top" width="51%"></td>
          <td height="1%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="4%" rowspan="1" colspan="2"><p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='creator'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1079711740051_userdn___" onclick="xf_focusLabel(this);" id="label_field_1079711740051_userdn___">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1020421170425']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1079711740051_userdn___" onclick="xf_focusLabel(this);" id="label_field_1079711740051_userdn___">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1020421170425']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="18%" rowspan="1" colspan="3"><table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <input name="creator" type="hidden" id="field_1079711740051">
                    <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="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>
                  <!--
                       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="30" type="text" class="urEdfiTxtEnbl" id="field_1079711740051_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'">15</xsl:when>
                                <xsl:otherwise>11727</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="30" type="text" class="urEdfTxtEnbl" id="field_1079711740051_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">11727</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:value-of select="$sap_user"/>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='creator_userdn___'">
                          <input name="creator_userdn___" size="30" type="text" class="urEdfiTxtEnbl" id="field_1079711740051_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'">15</xsl:when>
                                <xsl:otherwise>11727</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="30" type="text" class="urEdfTxtEnbl" id="field_1079711740051_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">11727</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:value-of select="creator_userdn___"/>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='creator'">
                      <button type="button" class="urEdfHlpF4" id="1079711740051">
                        <xsl:attribute name="onclick">javascript:openChildBrowserArrayControl(new Array(document.rootform__.field_1079711740051,document.rootform__.field_1079711740051_userdn___),'?SelectGroups=false&amp;AddButtonLabel=OK&amp;StartPage=StartUserDisplayname&amp;SelectRoles=false&amp;SingleSelection=true<xsl:if test="$ext_params_user and $ext_params_user!=''">&amp;<xsl:value-of select="$ext_params_user"/>
                          </xsl:if>','SearchText',1,550,350)</xsl:attribute>
                        <xsl:attribute name="title">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_LD_1079711740051']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='creator'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">16</xsl:when>
                              <xsl:otherwise>11727</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">11728</xsl:when>
                              <xsl:otherwise>11727</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpF4" id="1079711740051">
                        <xsl:attribute name="onclick">javascript:openChildBrowserArrayControl(new Array(document.rootform__.field_1079711740051,document.rootform__.field_1079711740051_userdn___),'?SelectGroups=false&amp;AddButtonLabel=OK&amp;StartPage=StartUserDisplayname&amp;SelectRoles=false&amp;SingleSelection=true<xsl:if test="$ext_params_user and $ext_params_user!=''">&amp;<xsl:value-of select="$ext_params_user"/>
                          </xsl:if>','SearchText',1,550,350)</xsl:attribute>
                        <xsl:attribute name="title">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_LD_1079711740051']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='creator'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">16</xsl:when>
                              <xsl:otherwise>11727</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">11728</xsl:when>
                              <xsl:otherwise>11727</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for creator
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1079711740051']" name="errText"/>
              <xsl:with-param select="'creator'" name="variable"/>
              <xsl:with-param select="'14'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <td height="3%" valign="top" width="2%" rowspan="1" colspan="1"><p>
              <span class="urTxtStd">
                <xsl:call-template name="outputvalue">
                  <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1023287893449']" name="value"/>
                </xsl:call-template>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="6%" rowspan="1" colspan="1"><p>
              <span class="urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='created'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1080134865920" onclick="xf_focusLabel(this);" id="label_field_1080134865920">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1233069263985']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1080134865920" onclick="xf_focusLabel(this);" id="label_field_1080134865920">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1233069263985']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="6%" rowspan="1" colspan="2"><table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       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="30" type="text" class="urEdfiTxtEnbl" id="field_1080134865920">
                            <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'">21</xsl:when>
                                <xsl:otherwise>11730</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="30" type="text" class="urEdfTxtEnbl" id="field_1080134865920">
                            <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">11730</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:value-of select="$date"/>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='created'">
                          <input name="created" size="30" type="text" class="urEdfiTxtEnbl" id="field_1080134865920">
                            <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'">21</xsl:when>
                                <xsl:otherwise>11730</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="30" type="text" class="urEdfTxtEnbl" id="field_1080134865920">
                            <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">11730</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:value-of select="created"/>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='created'">
                      <button type="button" class="urEdfHlpDate" id="1080134865920">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1080134865920,'?StartPage=StartDate<xsl:if test="$ext_params_date and $ext_params_date!=''">&amp;<xsl:value-of select="$ext_params_date"/>
                          </xsl:if>','StringFromParent',450,230)</xsl:attribute>
                        <xsl:attribute name="title">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_LD_1080134865920']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='created'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">22</xsl:when>
                              <xsl:otherwise>11730</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">11731</xsl:when>
                              <xsl:otherwise>11730</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpDate" id="1080134865920">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1080134865920,'?StartPage=StartDate<xsl:if test="$ext_params_date and $ext_params_date!=''">&amp;<xsl:value-of select="$ext_params_date"/>
                          </xsl:if>','StringFromParent',450,230)</xsl:attribute>
                        <xsl:attribute name="title">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_LD_1080134865920']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='created'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">22</xsl:when>
                              <xsl:otherwise>11730</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">11731</xsl:when>
                              <xsl:otherwise>11730</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for created
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1080134865920']" name="errText"/>
              <xsl:with-param select="'created'" name="variable"/>
              <xsl:with-param select="'20'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <td height="3%" valign="top" width="51%"></td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="4%"></td>
          <td height="3%" valign="top" width="51%"></td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="2%" rowspan="1" colspan="1"><p>
              <span class="urTxtStd">
                <xsl:call-template name="outputvalue">
                  <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1083757112346']" name="value"/>
                </xsl:call-template>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="4%"></td>
          <td height="3%" valign="top" width="51%"></td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="4%" rowspan="1" colspan="2"><p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='content'">
                      <span class="urTxtNeg">
                        <label onclick="xf_focusLabel(this);">
                          <xsl:attribute name="ffoorr">
                            <xsl:choose>
                              <xsl:when test="$htmleditor='true'">
                                <xsl:value-of select="'contenthtmlbeditor'"/>
                              </xsl:when>
                              <xsl:otherwise>
                                <xsl:value-of select="'field_1083757112343'"/>
                              </xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                          <xsl:attribute name="id">label_<xsl:choose>
                              <xsl:when test="$htmleditor='true'">
                                <xsl:value-of select="'contenthtmlbeditor'"/>
                              </xsl:when>
                              <xsl:otherwise>
                                <xsl:value-of select="'field_1083757112343'"/>
                              </xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1083757112344']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label onclick="xf_focusLabel(this);">
                        <xsl:attribute name="ffoorr">
                          <xsl:choose>
                            <xsl:when test="$htmleditor='true'">
                              <xsl:value-of select="'contenthtmlbeditor'"/>
                            </xsl:when>
                            <xsl:otherwise>
                              <xsl:value-of select="'field_1083757112343'"/>
                            </xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                        <xsl:attribute name="id">label_<xsl:choose>
                            <xsl:when test="$htmleditor='true'">
                              <xsl:value-of select="'contenthtmlbeditor'"/>
                            </xsl:when>
                            <xsl:otherwise>
                              <xsl:value-of select="'field_1083757112343'"/>
                            </xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1083757112344']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="25%" valign="top" width="96%" rowspan="2" colspan="9"><!--
                 text area for element content
            -->
            <xsl:choose>
              <xsl:when test="$htmleditor = 'true'">
                <xsl:call-template name="addHtmlEditor">
                  <xsl:with-param select="'content'" name="fieldId"/>
                  <xsl:with-param select="'content'" name="fieldName"/>
                  <xsl:with-param select="'5'" name="editorVersion"/>
                  <xsl:with-param select="'true'" name="linked"/>
                  <xsl:with-param select="content" name="value"/>
                  <xsl:with-param select="'full'" name="toolbar"/>
                  <xsl:with-param select="'190'" name="height"/>
                  <xsl:with-param select="'urTbarWhl'" name="toolbarStyle"/>
                  <xsl:with-param select="'urTedWhl'" name="divStyle"/>
                  <xsl:with-param name="divTitle"/>
                  <xsl:with-param select="'11733'" name="tabIndex"/>
                  <xsl:with-param select="$uselighteditor" name="use_light_editor"/>
                </xsl:call-template>
              </xsl:when>
              <xsl:otherwise>
                <xsl:if test="content='' and ($editmode='create')">
                  <textarea name="content" wrap="true" class="urTedWhl" rows="5" cols="35" id="field_1083757112343">
                    <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='content'">
                        <xsl:attribute name="tabindex">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'">28</xsl:when>
                            <xsl:otherwise>11733</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                      </xsl:when>
                      <xsl:otherwise>
                        <xsl:attribute name="tabindex">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'">11734</xsl:when>
                            <xsl:otherwise>11733</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                      </xsl:otherwise>
                    </xsl:choose>
                    <xsl:value-of select="''"/>
                  </textarea>
                </xsl:if>
                <xsl:if test="content!='' or ($editmode!='create')">
                  <textarea name="content" wrap="true" class="urTedWhl" rows="5" cols="35" id="field_1083757112343">
                    <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='content'">
                        <xsl:attribute name="tabindex">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'">28</xsl:when>
                            <xsl:otherwise>11733</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                      </xsl:when>
                      <xsl:otherwise>
                        <xsl:attribute name="tabindex">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'">11734</xsl:when>
                            <xsl:otherwise>11733</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                      </xsl:otherwise>
                    </xsl:choose>
                    <xsl:value-of select="content"/>
                  </textarea>
                </xsl:if>
              </xsl:otherwise>
            </xsl:choose>
          </td>
        </tr>
        <tr>
          <td height="23%" valign="top" width="2%"></td>
          <td height="23%" valign="top" width="2%"></td>
        </tr>
        <tr>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="4%"></td>
          <td height="1%" valign="top" width="51%"></td>
          <td height="1%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="4%" rowspan="1" colspan="2"><p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='changer'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1079711739781_userdn___" onclick="xf_focusLabel(this);" id="label_field_1079711739781_userdn___">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1020421170433']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1079711739781_userdn___" onclick="xf_focusLabel(this);" id="label_field_1079711739781_userdn___">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1020421170433']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="18%" rowspan="1" colspan="3"><table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <input name="changer" type="hidden" id="field_1079711739781">
                    <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>
                  <!--
                       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="30" type="text" class="urEdfiTxtEnbl" id="field_1079711739781_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'">39</xsl:when>
                                <xsl:otherwise>11739</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="30" type="text" class="urEdfTxtEnbl" id="field_1079711739781_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">11739</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:value-of select="$sap_user"/>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='changer_userdn___'">
                          <input name="changer_userdn___" size="30" type="text" class="urEdfiTxtEnbl" id="field_1079711739781_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'">39</xsl:when>
                                <xsl:otherwise>11739</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="30" type="text" class="urEdfTxtEnbl" id="field_1079711739781_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">11739</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:value-of select="changer_userdn___"/>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='changer'">
                      <button type="button" class="urEdfHlpF4" id="1079711739781">
                        <xsl:attribute name="onclick">javascript:openChildBrowserArrayControl(new Array(document.rootform__.field_1079711739781,document.rootform__.field_1079711739781_userdn___),'?SelectGroups=false&amp;AddButtonLabel=OK&amp;StartPage=StartUserDisplayname&amp;SelectRoles=false&amp;SingleSelection=true<xsl:if test="$ext_params_user and $ext_params_user!=''">&amp;<xsl:value-of select="$ext_params_user"/>
                          </xsl:if>','SearchText',1,550,350)</xsl:attribute>
                        <xsl:attribute name="title">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_LD_1079711739781']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='changer'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">40</xsl:when>
                              <xsl:otherwise>11739</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">11740</xsl:when>
                              <xsl:otherwise>11739</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpF4" id="1079711739781">
                        <xsl:attribute name="onclick">javascript:openChildBrowserArrayControl(new Array(document.rootform__.field_1079711739781,document.rootform__.field_1079711739781_userdn___),'?SelectGroups=false&amp;AddButtonLabel=OK&amp;StartPage=StartUserDisplayname&amp;SelectRoles=false&amp;SingleSelection=true<xsl:if test="$ext_params_user and $ext_params_user!=''">&amp;<xsl:value-of select="$ext_params_user"/>
                          </xsl:if>','SearchText',1,550,350)</xsl:attribute>
                        <xsl:attribute name="title">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_LD_1079711739781']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='changer'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">40</xsl:when>
                              <xsl:otherwise>11739</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">11740</xsl:when>
                              <xsl:otherwise>11739</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for changer
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1079711739781']" name="errText"/>
              <xsl:with-param select="'changer'" name="variable"/>
              <xsl:with-param select="'38'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <td height="3%" valign="top" width="2%" rowspan="1" colspan="1"><p>
              <span class="urTxtStd">
                <xsl:call-template name="outputvalue">
                  <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1023287893457']" name="value"/>
                </xsl:call-template>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="6%" rowspan="1" colspan="1"><p>
              <span class="urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='changed'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1080134865607" onclick="xf_focusLabel(this);" id="label_field_1080134865607">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1233069263986']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1080134865607" onclick="xf_focusLabel(this);" id="label_field_1080134865607">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1233069263986']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="6%" rowspan="1" colspan="2"><table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       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="30" type="text" class="urEdfiTxtEnbl" id="field_1080134865607">
                            <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'">45</xsl:when>
                                <xsl:otherwise>11742</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="30" type="text" class="urEdfTxtEnbl" id="field_1080134865607">
                            <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">11742</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:value-of select="$date"/>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='changed'">
                          <input name="changed" size="30" type="text" class="urEdfiTxtEnbl" id="field_1080134865607">
                            <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'">45</xsl:when>
                                <xsl:otherwise>11742</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="30" type="text" class="urEdfTxtEnbl" id="field_1080134865607">
                            <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">11742</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:value-of select="changed"/>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='changed'">
                      <button type="button" class="urEdfHlpDate" id="1080134865607">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1080134865607,'?StartPage=StartDate<xsl:if test="$ext_params_date and $ext_params_date!=''">&amp;<xsl:value-of select="$ext_params_date"/>
                          </xsl:if>','StringFromParent',450,230)</xsl:attribute>
                        <xsl:attribute name="title">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_LD_1080134865607']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='changed'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">46</xsl:when>
                              <xsl:otherwise>11742</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">11743</xsl:when>
                              <xsl:otherwise>11742</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpDate" id="1080134865607">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1080134865607,'?StartPage=StartDate<xsl:if test="$ext_params_date and $ext_params_date!=''">&amp;<xsl:value-of select="$ext_params_date"/>
                          </xsl:if>','StringFromParent',450,230)</xsl:attribute>
                        <xsl:attribute name="title">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_LD_1080134865607']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='changed'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">46</xsl:when>
                              <xsl:otherwise>11742</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">11743</xsl:when>
                              <xsl:otherwise>11742</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for changed
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1080134865607']" name="errText"/>
              <xsl:with-param select="'changed'" name="variable"/>
              <xsl:with-param select="'44'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <td height="3%" valign="top" width="51%"></td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="4%"></td>
          <td height="3%" valign="top" width="51%"></td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="2%" rowspan="1" colspan="1"><p>
              <span class="urTxtStd">
                <xsl:call-template name="outputvalue">
                  <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1079946057985']" name="value"/>
                </xsl:call-template>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="4%"></td>
          <td height="3%" valign="top" width="51%"></td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="16%" rowspan="1" colspan="4"><p>
              <span class="urTxtH3">
                <span>
                  <xsl:attribute name="tabindex">
                    <xsl:if test="$accessibilitymode='true'">11744</xsl:if>
                  </xsl:attribute>
                  <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1079946057973']"/>
                </span>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="4%"></td>
          <td height="3%" valign="top" width="51%"></td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="1" bgcolor="black" valign="top" width="100%" rowspan="1" colspan="11"></td>
        </tr>
        <tr>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="4%"></td>
          <td height="1%" valign="top" width="51%"></td>
          <td height="1%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="100%" rowspan="1" colspan="11"><p>
              <span class="urTxtLeg">
                <span>
                  <xsl:attribute name="tabindex">
                    <xsl:if test="$accessibilitymode='true'">11745</xsl:if>
                  </xsl:attribute>
                  <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1079946057968']"/>
                </span>
              </span>
            </p>
          </td>
        </tr>
        <tr>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="4%"></td>
          <td height="1%" valign="top" width="51%"></td>
          <td height="1%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="2%" rowspan="1" colspan="1"><p>
              <span class="urTxtStd">
                <xsl:call-template name="outputvalue">
                  <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1079946057977']" name="value"/>
                </xsl:call-template>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="4%"></td>
          <td height="3%" valign="top" width="51%"></td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="4%"></td>
          <td height="1%" valign="top" width="51%"></td>
          <td height="1%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="4%" rowspan="1" colspan="2"><p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='urllabel'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1079946057972" onclick="xf_focusLabel(this);" id="label_field_1079946057972">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1079946057978']"/>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1079946057972" onclick="xf_focusLabel(this);" id="label_field_1079946057972">
                        <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1079946057978']"/>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="29%" rowspan="1" colspan="6"><nobr>
              <!--
                   field urllabel
              -->
              <xsl:choose>
                <xsl:when test="($editmode='create') and not(./xf:ValidationError)">
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='urllabel'">
                      <input name="urllabel" size="40" type="text" class="urEdfiTxtEnbl" id="field_1079946057972">
                        <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'">57</xsl:when>
                            <xsl:otherwise>11748</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="'Read more...'"/>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="urllabel" size="40" type="text" class="urEdfTxtEnbl" id="field_1079946057972">
                        <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">11748</xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="'Read more...'"/>
                        </xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                </xsl:when>
                <xsl:otherwise>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='urllabel'">
                      <input name="urllabel" size="40" type="text" class="urEdfiTxtEnbl" id="field_1079946057972">
                        <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'">57</xsl:when>
                            <xsl:otherwise>11748</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="urllabel"/>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="urllabel" size="40" type="text" class="urEdfTxtEnbl" id="field_1079946057972">
                        <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">11748</xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="urllabel"/>
                        </xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                </xsl:otherwise>
              </xsl:choose>
            </nobr>
          </td>
          <td height="3%" valign="top" width="4%"></td>
          <td height="3%" valign="top" width="51%"></td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="4%"></td>
          <td height="3%" valign="top" width="51%"></td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="4%" rowspan="1" colspan="2"><p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='url'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1079946057971" onclick="xf_focusLabel(this);" id="label_field_1079946057971">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1079946057979']"/>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1079946057971" onclick="xf_focusLabel(this);" id="label_field_1079946057971">
                        <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1079946057979']"/>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="96%" rowspan="1" colspan="9"><nobr>
              <!--
                   field url
              -->
              <xsl:choose>
                <xsl:when test="url='' and ($editmode='create')">
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='url'">
                      <input name="url" size="40" type="text" value="" class="urEdfiTxtEnbl" id="field_1079946057971">
                        <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'">61</xsl:when>
                            <xsl:otherwise>11750</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="url" size="40" type="text" value="" class="urEdfTxtEnbl" id="field_1079946057971">
                        <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">11750</xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                  <!--
                       error block for url
                  -->
                  <xsl:call-template name="error_block_template">
                    <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1079946057971']" name="errText"/>
                    <xsl:with-param select="'url'" name="variable"/>
                    <xsl:with-param select="'60'" name="tabindex"/>
                  </xsl:call-template>
                </xsl:when>
                <xsl:otherwise>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='url'">
                      <input name="url" size="40" type="text" class="urEdfiTxtEnbl" id="field_1079946057971">
                        <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'">61</xsl:when>
                            <xsl:otherwise>11750</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="url"/>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="url" size="40" type="text" class="urEdfTxtEnbl" id="field_1079946057971">
                        <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">11750</xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="url"/>
                        </xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                  <!--
                       error block for url
                  -->
                  <xsl:call-template name="error_block_template">
                    <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1079946057971']" name="errText"/>
                    <xsl:with-param select="'url'" name="variable"/>
                    <xsl:with-param select="'60'" name="tabindex"/>
                  </xsl:call-template>
                </xsl:otherwise>
              </xsl:choose>
            </nobr>
          </td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="84%" rowspan="1" colspan="8"><!--
                 ADDING ITEM CALL FOR item1
            -->
            <xsl:call-template name="item1"/>
          </td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="4%"></td>
          <td height="1%" valign="top" width="51%"></td>
          <td height="1%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="2%" rowspan="1" colspan="1"><p>
              <span class="urTxtStd">
                <xsl:call-template name="outputvalue">
                  <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1079946057982']" name="value"/>
                </xsl:call-template>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="4%"></td>
          <td height="3%" valign="top" width="51%"></td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="4%" rowspan="1" colspan="2"><p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='readmorelabel'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1079946057967" onclick="xf_focusLabel(this);" id="label_field_1079946057967">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1079946057981']"/>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1079946057967" onclick="xf_focusLabel(this);" id="label_field_1079946057967">
                        <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1079946057981']"/>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="29%" rowspan="1" colspan="6"><nobr>
              <!--
                   field readmorelabel
              -->
              <xsl:choose>
                <xsl:when test="($editmode='create') and not(./xf:ValidationError)">
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='readmorelabel'">
                      <input name="readmorelabel" size="40" type="text" class="urEdfiTxtEnbl" id="field_1079946057967">
                        <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'">71</xsl:when>
                            <xsl:otherwise>11755</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="'Read more...'"/>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="readmorelabel" size="40" type="text" class="urEdfTxtEnbl" id="field_1079946057967">
                        <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">11755</xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="'Read more...'"/>
                        </xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                </xsl:when>
                <xsl:otherwise>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='readmorelabel'">
                      <input name="readmorelabel" size="40" type="text" class="urEdfiTxtEnbl" id="field_1079946057967">
                        <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'">71</xsl:when>
                            <xsl:otherwise>11755</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="readmorelabel"/>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="readmorelabel" size="40" type="text" class="urEdfTxtEnbl" id="field_1079946057967">
                        <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">11755</xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="readmorelabel"/>
                        </xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                </xsl:otherwise>
              </xsl:choose>
            </nobr>
          </td>
          <td height="3%" valign="top" width="4%"></td>
          <td height="3%" valign="top" width="51%"></td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="4%"></td>
          <td height="3%" valign="top" width="51%"></td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="4%" rowspan="1" colspan="2"><p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='readmore'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1079946057969" onclick="xf_focusLabel(this);" id="label_field_1079946057969">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1079946057980']"/>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1079946057969" onclick="xf_focusLabel(this);" id="label_field_1079946057969">
                        <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1079946057980']"/>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="96%" rowspan="1" colspan="9"><table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       field readmore
                  -->
                  <xsl:choose>
                    <xsl:when test="readmore='' and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='readmore'">
                          <input name="readmore" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1079946057969">
                            <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'">75</xsl:when>
                                <xsl:otherwise>11757</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="readmore" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1079946057969">
                            <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">11757</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='readmore'">
                          <input name="readmore" size="30" type="text" class="urEdfiTxtEnbl" id="field_1079946057969">
                            <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'">75</xsl:when>
                                <xsl:otherwise>11757</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="30" type="text" class="urEdfTxtEnbl" id="field_1079946057969">
                            <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">11757</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:value-of select="readmore"/>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='readmore'">
                      <button type="button" class="urEdfHlpF4" id="1079946057969">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1079946057969,'?UseAdapterUICommand=true&amp;Uri=<xsl:choose>
                            <xsl:when test="$projectroot!=''">
                              <xsl:value-of select="$projectroot"/>
                            </xsl:when>
                            <xsl:otherwise>/documents</xsl:otherwise>
                          </xsl:choose>&amp;StartUri=<xsl:choose>
                            <xsl:when test="$projectroot!=''">
                              <xsl:value-of select="$projectroot"/>
                            </xsl:when>
                            <xsl:otherwise>/documents</xsl:otherwise>
                          </xsl:choose>&amp;StartPage=StartNavigation&amp;AdapterUICommand=select_single_item_with_upload_ep<xsl:if test="$ext_params_image_ep and $ext_params_image_ep!=''">&amp;<xsl:value-of select="$ext_params_image_ep"/>
                          </xsl:if>','StringFromParent',550,590)</xsl:attribute>
                        <xsl:attribute name="title">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_LD_1079946057969']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='readmore'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">76</xsl:when>
                              <xsl:otherwise>11757</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">11758</xsl:when>
                              <xsl:otherwise>11757</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpF4" id="1079946057969">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1079946057969,'?UseAdapterUICommand=true&amp;Uri=<xsl:choose>
                            <xsl:when test="$projectroot!=''">
                              <xsl:value-of select="$projectroot"/>
                            </xsl:when>
                            <xsl:otherwise>/documents</xsl:otherwise>
                          </xsl:choose>&amp;StartUri=<xsl:choose>
                            <xsl:when test="$projectroot!=''">
                              <xsl:value-of select="$projectroot"/>
                            </xsl:when>
                            <xsl:otherwise>/documents</xsl:otherwise>
                          </xsl:choose>&amp;StartPage=StartNavigation&amp;AdapterUICommand=select_single_item_with_upload_ep<xsl:if test="$ext_params_image_ep and $ext_params_image_ep!=''">&amp;<xsl:value-of select="$ext_params_image_ep"/>
                          </xsl:if>','StringFromParent',550,590)</xsl:attribute>
                        <xsl:attribute name="title">
                          <xsl:value-of select="$resources/TEXT[@AKEY='lbl_LD_1079946057969']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='readmore'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">76</xsl:when>
                              <xsl:otherwise>11757</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">11758</xsl:when>
                              <xsl:otherwise>11757</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for readmore
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1079946057969']" name="errText"/>
              <xsl:with-param select="'readmore'" name="variable"/>
              <xsl:with-param select="'74'" name="tabindex"/>
            </xsl:call-template>
          </td>
        </tr>
        <tr>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="4%"></td>
          <td height="1%" valign="top" width="51%"></td>
          <td height="1%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="1" bgcolor="black" valign="top" width="100%" rowspan="1" colspan="11"></td>
        </tr>
        <tr>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="6%"></td>
          <td height="1%" valign="top" width="2%"></td>
          <td height="1%" valign="top" width="4%"></td>
          <td height="1%" valign="top" width="51%"></td>
          <td height="1%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="2%" rowspan="1" colspan="1"><p>
              <span class="urTxtStd">
                <xsl:call-template name="outputvalue">
                  <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1079946057983']" name="value"/>
                </xsl:call-template>
              </span>
            </p>
          </td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="4%"></td>
          <td height="3%" valign="top" width="51%"></td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
        <tr>
          <td height="3%" valign="top" width="10%" rowspan="1" colspan="3"><!--
                 ADDING ITEM CALL FOR item2
            -->
            <xsl:call-template name="item2"/>
          </td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="6%"></td>
          <td height="3%" valign="top" width="2%"></td>
          <td height="3%" valign="top" width="4%"></td>
          <td height="3%" valign="top" width="51%"></td>
          <td height="3%" valign="top" width="12%"></td>
        </tr>
      </table>
      <input name="mandatoryFields" type="hidden" value="wcmprop.default:displayname;name"/>
    </xsl:template>
    <!--
         MAIN ITEM TEMPLATE
    -->
    <xsl:template name="item1">
      <!--
           grouping with id 1080134867015
      -->
      <p>
        <img border="0">
          <xsl:attribute name="alt">
            <xsl:value-of select="$resources/TEXT[@AKEY='tol_A_1079946057970']"/>
          </xsl:attribute>
          <xsl:attribute name="title">
            <xsl:value-of select="$resources/TEXT[@AKEY='tol_A_1079946057970']"/>
          </xsl:attribute>
          <xsl:if test="$accessibilitymode='true'">
            <xsl:attribute name="tabindex">11751</xsl:attribute>
          </xsl:if>
          <xsl:attribute name="src">
            <xsl:value-of select="$contentaccess"/>/etc/public/mimes/images/s_s_ledy.gif</xsl:attribute>
        </img>
        <span class="urTxtStd">
          <span>
            <xsl:attribute name="tabindex">
              <xsl:if test="$accessibilitymode='true'">11752</xsl:if>
            </xsl:attribute>
            <xsl:value-of select="$resources/TEXT[@AKEY='lbl_1079946057974']"/>
          </span>
        </span>
        <br/>
        <br/>
      </p>
    </xsl:template>
    <!--
         MAIN ITEM TEMPLATE
    -->
    <xsl:template name="item2">
      <!--
           grouping with id 1087822424342
      -->
      <p>
        <nobr>
          <a class="urBtnEmph">
            <xsl:attribute name="tabindex">11760</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>
        </nobr>
        <span class="urTxtStd">
          <xsl:call-template name="outputvalue">
            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1087822424340']" name="value"/>
          </xsl:call-template>
        </span>
        <nobr>
          <a class="urBtnStd">
            <xsl:attribute name="tabindex">11762</xsl:attribute>
            <xsl:if test="'true'">
              <xsl:attribute name="href">javascript:HrefSubmit('authorpreview','<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_1087822424338']"/>
          </a>
        </nobr>
        <span class="urTxtStd">
          <xsl:call-template name="outputvalue">
            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1087822424341']" name="value"/>
          </xsl:call-template>
        </span>
        <nobr>
          <a class="urBtnStd">
            <xsl:attribute name="tabindex">11764</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>
        </nobr>
        <br/>
      </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(url)} 
 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('SAP_APP_FAQs')+'&amp;show/test='+encodeXmlFormsUri('<xsl:value-of select="$authorpreviewresource"/>')+'&amp;authorpreview=true');</xsl:if>function setHtmlEditorToDefault(htmlId, defaultId) {var x = document.getElementById(htmlId);var def = document.getElementById(defaultId);if(x!=null &amp;&amp; def!=null) {x.innerHTML = def.value;}}
 function openChildBrowserControl(inputField,querystring,valueParameter,width,height){browserField=inputField;var tmpVP=(valueParameter != null)?('&amp;'+valueParameter+'='+browserField.value):'';childWindow=open('<xsl:value-of select="$xmlformsbrowsers"/>'+querystring+tmpVP,'WinBrowserControl','resizable=yes,width='+width+',height='+height);childWindow.focus();if (childWindow.opener==null) childWindow.opener=self;}
 function openChildBrowserArrayControl(inputFieldArray,querystring,valueParameter,valueIndex,width,height){browserFieldArray=inputFieldArray;var tmpVP=(valueParameter != null)?('&amp;'+valueParameter+'='+encodeURIComponent(browserFieldArray[valueIndex].value)):'';childWindow=open('<xsl:value-of select="$xmlformsbrowsers"/>'+querystring+tmpVP,'WinBrowserControl','resizable=yes,width='+width+',height='+height);childWindow.focus();if (childWindow.opener==null) childWindow.opener=self;}
 function writeToParent(textForField){if (multiValuedFields[browserField.id]!=null&amp;&amp;multiValuedFields[browserField.id]==1) {if (browserField.value!=null&amp;&amp;browserField.value!='') {browserField.value+=',';}browserField.value+=textForField;}else {browserField.value=textForField;}}
 function writeArrayToParent(textsForFields){for (var i=0;i&lt;textsForFields.length&amp;&amp;i&lt;browserFieldArray.length;i++){if (multiValuedFields[browserFieldArray[i].id]!=null&amp;&amp;multiValuedFields[browserFieldArray[i].id]==1) {if (browserFieldArray[i].value!=null&amp;&amp;browserFieldArray[i].value!='') {browserFieldArray[i].value+=',';}browserFieldArray[i].value+=textsForFields[i];}else {browserFieldArray[i].value=textsForFields[i];}}}
          //</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>FAQ</xsl:otherwise>
            </xsl:choose>
          </title>
        </head>
        <style type="text/css">body {}</style>
        <body class="prtlBody urFontBaseFam urScrl urGrpBdyBoxBgColor" onload="javascript:initHTMLEditors()">
          <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">11719</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>
        <input name="htmlbJavaScriptPath" type="hidden">
          <xsl:attribute name="value">
            <xsl:value-of select="$javascriptpath"/>
          </xsl:attribute>
        </input>
        <script language="JavaScript">
          <xsl:comment>
          function resetHTMLEditors() {javascript: /* new editor do not need call to setHtmlEditorToDefault function, m_fieldID:content*/;}
 function initHTMLEditors() {/*htmledit ver. 5 do not require such method*/}
          //</xsl:comment>
        </script>
        <xsl:call-template name="addUrSystemVariable"/>
        <script language="JavaScript">
          <xsl:attribute name="src">
            <xsl:value-of select="$urpopupjsurl"/>
          </xsl:attribute>
        </script>
        <script language="JavaScript">
          <xsl:attribute name="src">
            <xsl:value-of select="$urmapijsurl"/>
          </xsl:attribute>
        </script>
        <script language="JavaScript">
          <xsl:comment>
          var multiValuedFields=new Array();
          //</xsl:comment>
        </script>
      </html>
    </xsl:template>
  </xsl:stylesheet>