<?xml version="1.0" encoding="UTF-8"?>
  <!--
       Description   Edit XSL Transformation for Form Project SAP_TransportPackage
       Copyright     Copyright (c) SAP AG 2009
       Author        XML Forms Document Builder 1.0
       Version       3.3 2009-10-14
  -->
  <!DOCTYPE xsl:stylesheet [
  <!ENTITY nbsp "&#160;">
  ]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:xf="http://www.sapportals.com/wcm/app/xmlforms">
    <!--
         CUSTOM PARAMETERS SECTION
    -->
    <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_TransportPackage.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_TransportPackage/', $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 height="1" width="1" class="urGrpBdyBoxBgColor" cellpadding="1" cellspacing="1">
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;0%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;0%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;0%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;0%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;0%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;0%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;0%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;0%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;0%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;0%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;0%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="63%" rowspan="1" colspan="10">
            <p>
              <span class="urTxtH1">
                <span>
                  <xsl:attribute name="tabindex">
                    <xsl:if test="$accessibilitymode='true'">25497</xsl:if>
                  </xsl:attribute>
                  <nobr>
                    <xsl:call-template name="outputvalue">
                      <xsl:with-param select="$resources/TEXT[@AKEY='msg_1177490987886']" name="value"/>
                    </xsl:call-template>
                  </nobr>
                </span>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="37%"/>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;3%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;3%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;3%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;3%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;3%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;3%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;3%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;3%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;3%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;3%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;3%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="10%" rowspan="1" colspan="1">
            <p>
              <span class="urLblStd urTxtStd">
                <xsl:choose>
                  <xsl:when test="./xf:ValidationError/@tagname='wcmprop.default:displayname'">
                    <span class="urTxtNeg">
                      <label ffoorr="field_1178801609337" onclick="xf_focusLabel(this);" id="label_field_1178801609337">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1178801609336']" 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_1178801609337" onclick="xf_focusLabel(this);" id="label_field_1178801609337">
                      <xsl:call-template name="outputvalue">
                        <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1178801609336']" 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>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="44%" rowspan="1" align="left" colspan="6">
            <nobr>
              <!--
                   property default:displayname
              -->
              <xsl:choose>
                <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='default:displayname']) or not(./xf:resourceproperties/xf:property[@id='default:displayname']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='default:displayname']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.default:displayname'">
                      <input name="wcmprop.default:displayname" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1178801609337">
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'">7</xsl:when>
                            <xsl:otherwise>25499</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="wcmprop.default:displayname" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1178801609337">
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">25499</xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                  <!--
                       error block for default:displayname
                  -->
                  <xsl:call-template name="error_block_template">
                    <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1178801609337']" name="errText"/>
                    <xsl:with-param select="'wcmprop.default:displayname'" name="variable"/>
                    <xsl:with-param select="'6'" name="tabindex"/>
                  </xsl:call-template>
                </xsl:when>
                <xsl:otherwise>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.default:displayname'">
                      <input name="wcmprop.default:displayname" size="30" type="text" class="urEdfiTxtEnbl" id="field_1178801609337">
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'">7</xsl:when>
                            <xsl:otherwise>25499</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:call-template name="printPropValues">
                            <xsl:with-param select="'default:displayname'" name="propId"/>
                            <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                            <xsl:with-param select="'false'" name="useDisplayName"/>
                          </xsl:call-template>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="wcmprop.default:displayname" size="30" type="text" class="urEdfTxtEnbl" id="field_1178801609337">
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">25499</xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:call-template name="printPropValues">
                            <xsl:with-param select="'default:displayname'" name="propId"/>
                            <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                            <xsl:with-param select="'false'" name="useDisplayName"/>
                          </xsl:call-template>
                        </xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                  <!--
                       error block for default:displayname
                  -->
                  <xsl:call-template name="error_block_template">
                    <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1178801609337']" name="errText"/>
                    <xsl:with-param select="'wcmprop.default:displayname'" name="variable"/>
                    <xsl:with-param select="'6'" name="tabindex"/>
                  </xsl:call-template>
                </xsl:otherwise>
              </xsl:choose>
            </nobr>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="19%" rowspan="1" colspan="4">
            <p>
              <xsl:call-template name="outputvalue">
                <xsl:with-param select="$resources/TEXT[@AKEY='null']" name="value"/>
              </xsl:call-template>
            </p>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="0%" valign="top" style="padding:0px;margin:0px;border-top-color:#000000;border-top-width:1px;border-top-style:solid;font-size:1px" width="62%" rowspan="1" colspan="9">&#160;</td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;0%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;0%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="62%" rowspan="1" colspan="9">
            <p>
              <span class="urTxtH2">
                <span>
                  <xsl:attribute name="tabindex">
                    <xsl:if test="$accessibilitymode='true'">25502</xsl:if>
                  </xsl:attribute>
                  <nobr>
                    <xsl:call-template name="outputvalue">
                      <xsl:with-param select="$resources/TEXT[@AKEY='msg_1177490988096']" name="value"/>
                    </xsl:call-template>
                  </nobr>
                </span>
              </span>
            </p>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="100%" rowspan="1" colspan="11">
            <p>
              <span class="urTxtLeg">
                <span>
                  <xsl:attribute name="tabindex">
                    <xsl:if test="$accessibilitymode='true'">25503</xsl:if>
                  </xsl:attribute>
                  <xsl:call-template name="outputvalue">
                    <xsl:with-param select="$resources/TEXT[@AKEY='msg_1178874106782']" name="value"/>
                  </xsl:call-template>
                </span>
              </span>
            </p>
          </td>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:guid'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1187860285822" onclick="xf_focusLabel(this);" id="label_field_1187860285822">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1187860285821']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1187860285822" onclick="xf_focusLabel(this);" id="label_field_1187860285822">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1187860285821']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="19%" rowspan="1" colspan="4">
            <input name="shadow_wcmprop.expimp:guid" type="hidden" value="false"/>
            <nobr>
              <span class="urImgCgbCbx urTxtStd">
                <input name="wcmprop.expimp:guid" type="checkbox" id="field_1187860285822">
                  <xsl:attribute name="tabindex">25504</xsl:attribute>
                  <xsl:choose>
                    <xsl:when test="$accessibilitymode='true'">
                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                          </xsl:when>
                          <xsl:otherwise>*</xsl:otherwise>
                        </xsl:choose>' );</xsl:attribute>
                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                          </xsl:when>
                          <xsl:otherwise>*</xsl:otherwise>
                        </xsl:choose>' );</xsl:attribute>
                    </xsl:when>
                  </xsl:choose>
                  <xsl:choose>
                    <xsl:when test="./xf:resourceproperties/xf:property[@id='expimp:guid']/xf:values/xf:valuedef/xf:value='true'">
                      <xsl:attribute name="value">true</xsl:attribute>
                      <xsl:attribute name="checked"/>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:attribute name="value">true</xsl:attribute>
                    </xsl:otherwise>
                  </xsl:choose>
                </input>
                <xsl:value-of select="$resources/TEXT[@AKEY='null']"/>
              </span>
            </nobr>
            <!--
                 error block for expimp:guid
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1187860285822']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:guid'" name="variable"/>
              <xsl:with-param select="'16'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid0'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177490988118" onclick="xf_focusLabel(this);" id="label_field_1177490988118">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988067']" 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_1177490988118" onclick="xf_focusLabel(this);" id="label_field_1177490988118">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988067']" 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="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid0
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid0']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid0']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid0']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid0'">
                          <input name="wcmprop.expimp:rid0" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177490988118">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:rid0']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988118']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">
                              <xsl:choose>
                                <xsl:when test="$accessibilitymode='true'">21</xsl:when>
                                <xsl:otherwise>25506</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid0" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177490988118">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:rid0']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988118']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">25506</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid0'">
                          <input name="wcmprop.expimp:rid0" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177490988118">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:rid0']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988118']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">
                              <xsl:choose>
                                <xsl:when test="$accessibilitymode='true'">21</xsl:when>
                                <xsl:otherwise>25506</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid0'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid0" size="30" type="text" class="urEdfTxtEnbl" id="field_1177490988118">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:rid0']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988118']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">25506</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid0'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid0'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177490988118">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177490988118,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177490988118']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid0'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">22</xsl:when>
                              <xsl:otherwise>25506</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25507</xsl:when>
                              <xsl:otherwise>25506</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177490988118">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177490988118,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177490988118']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid0'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">22</xsl:when>
                              <xsl:otherwise>25506</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25507</xsl:when>
                              <xsl:otherwise>25506</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid0
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177490988118']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid0'" name="variable"/>
              <xsl:with-param select="'20'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid1'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177490988191" onclick="xf_focusLabel(this);" id="label_field_1177490988191">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988069']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177490988191" onclick="xf_focusLabel(this);" id="label_field_1177490988191">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988069']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid1
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid1']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid1']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid1']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid1'">
                          <input name="wcmprop.expimp:rid1" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177490988191">
                            <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'">25</xsl:when>
                                <xsl:otherwise>25508</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid1" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177490988191">
                            <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">25508</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid1'">
                          <input name="wcmprop.expimp:rid1" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177490988191">
                            <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'">25</xsl:when>
                                <xsl:otherwise>25508</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid1'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid1" size="30" type="text" class="urEdfTxtEnbl" id="field_1177490988191">
                            <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">25508</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid1'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid1'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177490988191">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177490988191,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177490988191']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid1'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">26</xsl:when>
                              <xsl:otherwise>25508</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25509</xsl:when>
                              <xsl:otherwise>25508</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177490988191">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177490988191,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177490988191']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid1'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">26</xsl:when>
                              <xsl:otherwise>25508</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25509</xsl:when>
                              <xsl:otherwise>25508</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid1
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177490988191']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid1'" name="variable"/>
              <xsl:with-param select="'24'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid2'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177490988192" onclick="xf_focusLabel(this);" id="label_field_1177490988192">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988071']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177490988192" onclick="xf_focusLabel(this);" id="label_field_1177490988192">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988071']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid2
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid2']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid2']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid2']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid2'">
                          <input name="wcmprop.expimp:rid2" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177490988192">
                            <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'">29</xsl:when>
                                <xsl:otherwise>25510</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid2" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177490988192">
                            <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">25510</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid2'">
                          <input name="wcmprop.expimp:rid2" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177490988192">
                            <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'">29</xsl:when>
                                <xsl:otherwise>25510</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid2'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid2" size="30" type="text" class="urEdfTxtEnbl" id="field_1177490988192">
                            <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">25510</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid2'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid2'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177490988192">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177490988192,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177490988192']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid2'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">30</xsl:when>
                              <xsl:otherwise>25510</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25511</xsl:when>
                              <xsl:otherwise>25510</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177490988192">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177490988192,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177490988192']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid2'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">30</xsl:when>
                              <xsl:otherwise>25510</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25511</xsl:when>
                              <xsl:otherwise>25510</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid2
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177490988192']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid2'" name="variable"/>
              <xsl:with-param select="'28'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid3'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177490988193" onclick="xf_focusLabel(this);" id="label_field_1177490988193">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988073']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177490988193" onclick="xf_focusLabel(this);" id="label_field_1177490988193">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988073']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid3
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid3']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid3']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid3']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid3'">
                          <input name="wcmprop.expimp:rid3" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177490988193">
                            <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'">33</xsl:when>
                                <xsl:otherwise>25512</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid3" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177490988193">
                            <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">25512</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid3'">
                          <input name="wcmprop.expimp:rid3" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177490988193">
                            <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'">33</xsl:when>
                                <xsl:otherwise>25512</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid3'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid3" size="30" type="text" class="urEdfTxtEnbl" id="field_1177490988193">
                            <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">25512</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid3'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid3'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177490988193">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177490988193,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177490988193']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid3'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">34</xsl:when>
                              <xsl:otherwise>25512</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25513</xsl:when>
                              <xsl:otherwise>25512</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177490988193">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177490988193,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177490988193']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid3'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">34</xsl:when>
                              <xsl:otherwise>25512</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25513</xsl:when>
                              <xsl:otherwise>25512</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid3
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177490988193']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid3'" name="variable"/>
              <xsl:with-param select="'32'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid4'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177490988194" onclick="xf_focusLabel(this);" id="label_field_1177490988194">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988075']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177490988194" onclick="xf_focusLabel(this);" id="label_field_1177490988194">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988075']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid4
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid4']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid4']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid4']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid4'">
                          <input name="wcmprop.expimp:rid4" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177490988194">
                            <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'">37</xsl:when>
                                <xsl:otherwise>25514</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid4" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177490988194">
                            <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">25514</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid4'">
                          <input name="wcmprop.expimp:rid4" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177490988194">
                            <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'">37</xsl:when>
                                <xsl:otherwise>25514</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid4'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid4" size="30" type="text" class="urEdfTxtEnbl" id="field_1177490988194">
                            <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">25514</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid4'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid4'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177490988194">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177490988194,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177490988194']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid4'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">38</xsl:when>
                              <xsl:otherwise>25514</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25515</xsl:when>
                              <xsl:otherwise>25514</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177490988194">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177490988194,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177490988194']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid4'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">38</xsl:when>
                              <xsl:otherwise>25514</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25515</xsl:when>
                              <xsl:otherwise>25514</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid4
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177490988194']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid4'" name="variable"/>
              <xsl:with-param select="'36'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid5'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177856242495" onclick="xf_focusLabel(this);" id="label_field_1177856242495">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242562']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177856242495" onclick="xf_focusLabel(this);" id="label_field_1177856242495">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242562']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid5
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid5']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid5']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid5']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid5'">
                          <input name="wcmprop.expimp:rid5" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177856242495">
                            <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'">41</xsl:when>
                                <xsl:otherwise>25516</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid5" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177856242495">
                            <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">25516</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid5'">
                          <input name="wcmprop.expimp:rid5" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177856242495">
                            <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'">41</xsl:when>
                                <xsl:otherwise>25516</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid5'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid5" size="30" type="text" class="urEdfTxtEnbl" id="field_1177856242495">
                            <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">25516</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid5'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid5'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242495">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242495,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242495']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid5'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">42</xsl:when>
                              <xsl:otherwise>25516</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25517</xsl:when>
                              <xsl:otherwise>25516</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242495">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242495,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242495']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid5'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">42</xsl:when>
                              <xsl:otherwise>25516</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25517</xsl:when>
                              <xsl:otherwise>25516</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid5
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177856242495']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid5'" name="variable"/>
              <xsl:with-param select="'40'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid6'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177856242572" onclick="xf_focusLabel(this);" id="label_field_1177856242572">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242564']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177856242572" onclick="xf_focusLabel(this);" id="label_field_1177856242572">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242564']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid6
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid6']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid6']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid6']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid6'">
                          <input name="wcmprop.expimp:rid6" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177856242572">
                            <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>25518</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid6" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177856242572">
                            <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">25518</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid6'">
                          <input name="wcmprop.expimp:rid6" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177856242572">
                            <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>25518</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid6'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid6" size="30" type="text" class="urEdfTxtEnbl" id="field_1177856242572">
                            <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">25518</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid6'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid6'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242572">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242572,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242572']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid6'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">46</xsl:when>
                              <xsl:otherwise>25518</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25519</xsl:when>
                              <xsl:otherwise>25518</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242572">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242572,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242572']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid6'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">46</xsl:when>
                              <xsl:otherwise>25518</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25519</xsl:when>
                              <xsl:otherwise>25518</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid6
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177856242572']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid6'" name="variable"/>
              <xsl:with-param select="'44'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid7'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177856242573" onclick="xf_focusLabel(this);" id="label_field_1177856242573">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242566']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177856242573" onclick="xf_focusLabel(this);" id="label_field_1177856242573">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242566']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid7
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid7']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid7']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid7']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid7'">
                          <input name="wcmprop.expimp:rid7" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177856242573">
                            <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'">49</xsl:when>
                                <xsl:otherwise>25520</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid7" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177856242573">
                            <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">25520</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid7'">
                          <input name="wcmprop.expimp:rid7" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177856242573">
                            <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'">49</xsl:when>
                                <xsl:otherwise>25520</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid7'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid7" size="30" type="text" class="urEdfTxtEnbl" id="field_1177856242573">
                            <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">25520</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid7'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid7'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242573">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242573,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242573']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid7'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">50</xsl:when>
                              <xsl:otherwise>25520</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25521</xsl:when>
                              <xsl:otherwise>25520</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242573">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242573,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242573']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid7'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">50</xsl:when>
                              <xsl:otherwise>25520</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25521</xsl:when>
                              <xsl:otherwise>25520</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid7
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177856242573']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid7'" name="variable"/>
              <xsl:with-param select="'48'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid8'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177856242574" onclick="xf_focusLabel(this);" id="label_field_1177856242574">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242568']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177856242574" onclick="xf_focusLabel(this);" id="label_field_1177856242574">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242568']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid8
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid8']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid8']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid8']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid8'">
                          <input name="wcmprop.expimp:rid8" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177856242574">
                            <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'">53</xsl:when>
                                <xsl:otherwise>25522</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid8" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177856242574">
                            <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">25522</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid8'">
                          <input name="wcmprop.expimp:rid8" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177856242574">
                            <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'">53</xsl:when>
                                <xsl:otherwise>25522</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid8'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid8" size="30" type="text" class="urEdfTxtEnbl" id="field_1177856242574">
                            <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">25522</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid8'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid8'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242574">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242574,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242574']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid8'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">54</xsl:when>
                              <xsl:otherwise>25522</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25523</xsl:when>
                              <xsl:otherwise>25522</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242574">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242574,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242574']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid8'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">54</xsl:when>
                              <xsl:otherwise>25522</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25523</xsl:when>
                              <xsl:otherwise>25522</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid8
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177856242574']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid8'" name="variable"/>
              <xsl:with-param select="'52'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid9'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177856242575" onclick="xf_focusLabel(this);" id="label_field_1177856242575">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242570']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177856242575" onclick="xf_focusLabel(this);" id="label_field_1177856242575">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242570']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid9
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid9']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid9']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid9']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid9'">
                          <input name="wcmprop.expimp:rid9" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177856242575">
                            <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>25524</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid9" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177856242575">
                            <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">25524</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid9'">
                          <input name="wcmprop.expimp:rid9" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177856242575">
                            <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>25524</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid9'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid9" size="30" type="text" class="urEdfTxtEnbl" id="field_1177856242575">
                            <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">25524</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid9'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid9'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242575">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242575,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242575']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid9'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">58</xsl:when>
                              <xsl:otherwise>25524</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25525</xsl:when>
                              <xsl:otherwise>25524</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242575">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242575,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242575']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid9'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">58</xsl:when>
                              <xsl:otherwise>25524</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25525</xsl:when>
                              <xsl:otherwise>25524</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid9
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177856242575']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid9'" name="variable"/>
              <xsl:with-param select="'56'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid10'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177856242578" onclick="xf_focusLabel(this);" id="label_field_1177856242578">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242577']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177856242578" onclick="xf_focusLabel(this);" id="label_field_1177856242578">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242577']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid10
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid10']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid10']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid10']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid10'">
                          <input name="wcmprop.expimp:rid10" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177856242578">
                            <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>25526</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid10" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177856242578">
                            <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">25526</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid10'">
                          <input name="wcmprop.expimp:rid10" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177856242578">
                            <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>25526</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid10'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid10" size="30" type="text" class="urEdfTxtEnbl" id="field_1177856242578">
                            <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">25526</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid10'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid10'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242578">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242578,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242578']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid10'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">62</xsl:when>
                              <xsl:otherwise>25526</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25527</xsl:when>
                              <xsl:otherwise>25526</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242578">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242578,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242578']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid10'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">62</xsl:when>
                              <xsl:otherwise>25526</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25527</xsl:when>
                              <xsl:otherwise>25526</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid10
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177856242578']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid10'" name="variable"/>
              <xsl:with-param select="'60'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid11'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177856242580" onclick="xf_focusLabel(this);" id="label_field_1177856242580">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242579']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177856242580" onclick="xf_focusLabel(this);" id="label_field_1177856242580">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242579']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid11
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid11']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid11']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid11']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid11'">
                          <input name="wcmprop.expimp:rid11" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177856242580">
                            <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'">65</xsl:when>
                                <xsl:otherwise>25528</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid11" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177856242580">
                            <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">25528</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid11'">
                          <input name="wcmprop.expimp:rid11" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177856242580">
                            <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'">65</xsl:when>
                                <xsl:otherwise>25528</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid11'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid11" size="30" type="text" class="urEdfTxtEnbl" id="field_1177856242580">
                            <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">25528</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid11'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid11'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242580">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242580,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242580']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid11'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">66</xsl:when>
                              <xsl:otherwise>25528</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25529</xsl:when>
                              <xsl:otherwise>25528</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242580">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242580,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242580']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid11'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">66</xsl:when>
                              <xsl:otherwise>25528</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25529</xsl:when>
                              <xsl:otherwise>25528</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid11
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177856242580']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid11'" name="variable"/>
              <xsl:with-param select="'64'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid12'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177856242582" onclick="xf_focusLabel(this);" id="label_field_1177856242582">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242581']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177856242582" onclick="xf_focusLabel(this);" id="label_field_1177856242582">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242581']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid12
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid12']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid12']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid12']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid12'">
                          <input name="wcmprop.expimp:rid12" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177856242582">
                            <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'">69</xsl:when>
                                <xsl:otherwise>25530</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid12" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177856242582">
                            <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">25530</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid12'">
                          <input name="wcmprop.expimp:rid12" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177856242582">
                            <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'">69</xsl:when>
                                <xsl:otherwise>25530</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid12'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid12" size="30" type="text" class="urEdfTxtEnbl" id="field_1177856242582">
                            <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">25530</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid12'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid12'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242582">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242582,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242582']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid12'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">70</xsl:when>
                              <xsl:otherwise>25530</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25531</xsl:when>
                              <xsl:otherwise>25530</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242582">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242582,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242582']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid12'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">70</xsl:when>
                              <xsl:otherwise>25530</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25531</xsl:when>
                              <xsl:otherwise>25530</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid12
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177856242582']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid12'" name="variable"/>
              <xsl:with-param select="'68'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid13'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177856242584" onclick="xf_focusLabel(this);" id="label_field_1177856242584">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242583']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177856242584" onclick="xf_focusLabel(this);" id="label_field_1177856242584">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242583']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid13
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid13']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid13']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid13']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid13'">
                          <input name="wcmprop.expimp:rid13" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177856242584">
                            <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'">73</xsl:when>
                                <xsl:otherwise>25532</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid13" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177856242584">
                            <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">25532</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid13'">
                          <input name="wcmprop.expimp:rid13" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177856242584">
                            <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'">73</xsl:when>
                                <xsl:otherwise>25532</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid13'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid13" size="30" type="text" class="urEdfTxtEnbl" id="field_1177856242584">
                            <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">25532</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid13'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid13'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242584">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242584,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242584']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid13'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">74</xsl:when>
                              <xsl:otherwise>25532</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25533</xsl:when>
                              <xsl:otherwise>25532</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242584">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242584,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242584']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid13'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">74</xsl:when>
                              <xsl:otherwise>25532</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25533</xsl:when>
                              <xsl:otherwise>25532</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid13
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177856242584']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid13'" name="variable"/>
              <xsl:with-param select="'72'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid14'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177856242586" onclick="xf_focusLabel(this);" id="label_field_1177856242586">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242585']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177856242586" onclick="xf_focusLabel(this);" id="label_field_1177856242586">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242585']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid14
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid14']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid14']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid14']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid14'">
                          <input name="wcmprop.expimp:rid14" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177856242586">
                            <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'">77</xsl:when>
                                <xsl:otherwise>25534</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid14" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177856242586">
                            <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">25534</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid14'">
                          <input name="wcmprop.expimp:rid14" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177856242586">
                            <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'">77</xsl:when>
                                <xsl:otherwise>25534</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid14'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid14" size="30" type="text" class="urEdfTxtEnbl" id="field_1177856242586">
                            <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">25534</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid14'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid14'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242586">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242586,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242586']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid14'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">78</xsl:when>
                              <xsl:otherwise>25534</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25535</xsl:when>
                              <xsl:otherwise>25534</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242586">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242586,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242586']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid14'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">78</xsl:when>
                              <xsl:otherwise>25534</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25535</xsl:when>
                              <xsl:otherwise>25534</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid14
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177856242586']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid14'" name="variable"/>
              <xsl:with-param select="'76'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid15'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177856242588" onclick="xf_focusLabel(this);" id="label_field_1177856242588">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242587']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177856242588" onclick="xf_focusLabel(this);" id="label_field_1177856242588">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242587']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid15
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid15']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid15']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid15']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid15'">
                          <input name="wcmprop.expimp:rid15" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177856242588">
                            <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'">81</xsl:when>
                                <xsl:otherwise>25536</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid15" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177856242588">
                            <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">25536</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid15'">
                          <input name="wcmprop.expimp:rid15" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177856242588">
                            <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'">81</xsl:when>
                                <xsl:otherwise>25536</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid15'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid15" size="30" type="text" class="urEdfTxtEnbl" id="field_1177856242588">
                            <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">25536</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid15'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid15'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242588">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242588,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242588']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid15'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">82</xsl:when>
                              <xsl:otherwise>25536</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25537</xsl:when>
                              <xsl:otherwise>25536</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242588">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242588,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242588']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid15'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">82</xsl:when>
                              <xsl:otherwise>25536</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25537</xsl:when>
                              <xsl:otherwise>25536</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid15
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177856242588']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid15'" name="variable"/>
              <xsl:with-param select="'80'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid16'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177856242590" onclick="xf_focusLabel(this);" id="label_field_1177856242590">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242589']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177856242590" onclick="xf_focusLabel(this);" id="label_field_1177856242590">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242589']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid16
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid16']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid16']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid16']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid16'">
                          <input name="wcmprop.expimp:rid16" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177856242590">
                            <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'">85</xsl:when>
                                <xsl:otherwise>25538</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid16" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177856242590">
                            <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">25538</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid16'">
                          <input name="wcmprop.expimp:rid16" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177856242590">
                            <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'">85</xsl:when>
                                <xsl:otherwise>25538</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid16'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid16" size="30" type="text" class="urEdfTxtEnbl" id="field_1177856242590">
                            <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">25538</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid16'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid16'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242590">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242590,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242590']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid16'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">86</xsl:when>
                              <xsl:otherwise>25538</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25539</xsl:when>
                              <xsl:otherwise>25538</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242590">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242590,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242590']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid16'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">86</xsl:when>
                              <xsl:otherwise>25538</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25539</xsl:when>
                              <xsl:otherwise>25538</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid16
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177856242590']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid16'" name="variable"/>
              <xsl:with-param select="'84'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid17'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177856242592" onclick="xf_focusLabel(this);" id="label_field_1177856242592">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242591']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177856242592" onclick="xf_focusLabel(this);" id="label_field_1177856242592">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242591']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid17
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid17']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid17']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid17']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid17'">
                          <input name="wcmprop.expimp:rid17" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177856242592">
                            <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'">89</xsl:when>
                                <xsl:otherwise>25540</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid17" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177856242592">
                            <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">25540</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid17'">
                          <input name="wcmprop.expimp:rid17" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177856242592">
                            <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'">89</xsl:when>
                                <xsl:otherwise>25540</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid17'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid17" size="30" type="text" class="urEdfTxtEnbl" id="field_1177856242592">
                            <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">25540</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid17'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid17'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242592">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242592,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242592']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid17'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">90</xsl:when>
                              <xsl:otherwise>25540</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25541</xsl:when>
                              <xsl:otherwise>25540</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242592">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242592,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242592']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid17'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">90</xsl:when>
                              <xsl:otherwise>25540</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25541</xsl:when>
                              <xsl:otherwise>25540</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid17
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177856242592']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid17'" name="variable"/>
              <xsl:with-param select="'88'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid18'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177856242594" onclick="xf_focusLabel(this);" id="label_field_1177856242594">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242593']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177856242594" onclick="xf_focusLabel(this);" id="label_field_1177856242594">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242593']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid18
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid18']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid18']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid18']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid18'">
                          <input name="wcmprop.expimp:rid18" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177856242594">
                            <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'">93</xsl:when>
                                <xsl:otherwise>25542</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid18" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177856242594">
                            <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">25542</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid18'">
                          <input name="wcmprop.expimp:rid18" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177856242594">
                            <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'">93</xsl:when>
                                <xsl:otherwise>25542</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid18'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid18" size="30" type="text" class="urEdfTxtEnbl" id="field_1177856242594">
                            <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">25542</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid18'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid18'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242594">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242594,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242594']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid18'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">94</xsl:when>
                              <xsl:otherwise>25542</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25543</xsl:when>
                              <xsl:otherwise>25542</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242594">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242594,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242594']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid18'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">94</xsl:when>
                              <xsl:otherwise>25542</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25543</xsl:when>
                              <xsl:otherwise>25542</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid18
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177856242594']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid18'" name="variable"/>
              <xsl:with-param select="'92'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="12%" rowspan="1" colspan="2">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid19'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177856242596" onclick="xf_focusLabel(this);" id="label_field_1177856242596">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242595']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177856242596" onclick="xf_focusLabel(this);" id="label_field_1177856242596">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177856242595']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="48%" rowspan="1" align="left" colspan="6">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <!--
                       property expimp:rid19
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:rid19']) or not(./xf:resourceproperties/xf:property[@id='expimp:rid19']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:rid19']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid19'">
                          <input name="wcmprop.expimp:rid19" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177856242596">
                            <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'">97</xsl:when>
                                <xsl:otherwise>25544</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid19" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177856242596">
                            <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">25544</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid19'">
                          <input name="wcmprop.expimp:rid19" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177856242596">
                            <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'">97</xsl:when>
                                <xsl:otherwise>25544</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid19'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:rid19" size="30" type="text" class="urEdfTxtEnbl" id="field_1177856242596">
                            <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">25544</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:rid19'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
                <td>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid19'">
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242596">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242596,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242596']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid19'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">98</xsl:when>
                              <xsl:otherwise>25544</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25545</xsl:when>
                              <xsl:otherwise>25544</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <button type="button" class="urEdfHlpSmlF4" id="1177856242596">
                        <xsl:attribute name="onclick">javascript:openChildBrowserControl(document.rootform__.field_1177856242596,'?UseAdapterUICommand=true&amp;Uri=/&amp;StartUri=/&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='tol_LD_1177856242596']"/>
                        </xsl:attribute>
                      </button>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:rid19'">
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">98</xsl:when>
                              <xsl:otherwise>25544</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:when>
                        <xsl:otherwise>
                          <xsl:attribute name="tabindex">
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">25545</xsl:when>
                              <xsl:otherwise>25544</xsl:otherwise>
                            </xsl:choose>
                          </xsl:attribute>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:rid19
            -->
            <xsl:call-template name="error_block_template">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177856242596']" name="errText"/>
              <xsl:with-param select="'wcmprop.expimp:rid19'" name="variable"/>
              <xsl:with-param select="'96'" name="tabindex"/>
            </xsl:call-template>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="0%" valign="top" style="padding:0px;margin:0px;border-top-color:#000000;border-top-width:1px;border-top-style:solid;font-size:1px" width="62%" rowspan="1" colspan="9">&#160;</td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;0%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;0%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="62%" rowspan="1" colspan="9">
            <p>
              <span class="urTxtH2">
                <span>
                  <xsl:attribute name="tabindex">
                    <xsl:if test="$accessibilitymode='true'">25546</xsl:if>
                  </xsl:attribute>
                  <nobr>
                    <xsl:call-template name="outputvalue">
                      <xsl:with-param select="$resources/TEXT[@AKEY='msg_1177490988098']" name="value"/>
                    </xsl:call-template>
                  </nobr>
                </span>
              </span>
            </p>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="100%" rowspan="1" colspan="11">
            <p>
              <span class="urTxtLeg">
                <span>
                  <xsl:attribute name="tabindex">
                    <xsl:if test="$accessibilitymode='true'">25547</xsl:if>
                  </xsl:attribute>
                  <xsl:call-template name="outputvalue">
                    <xsl:with-param select="$resources/TEXT[@AKEY='msg_1180698285447']" name="value"/>
                  </xsl:call-template>
                </span>
              </span>
            </p>
          </td>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="23%" rowspan="1" colspan="5">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:name_filter'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177490988078" onclick="xf_focusLabel(this);" id="label_field_1177490988078">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988077']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177490988078" onclick="xf_focusLabel(this);" id="label_field_1177490988078">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988077']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="38%" rowspan="1" align="left" colspan="4">
            <nobr>
              <!--
                   property expimp:name_filter
              -->
              <xsl:choose>
                <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:name_filter']) or not(./xf:resourceproperties/xf:property[@id='expimp:name_filter']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:name_filter']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:name_filter'">
                      <input name="wcmprop.expimp:name_filter" size="30" type="text" value="" class="urEdfiTxtEnbl" id="field_1177490988078">
                        <xsl:attribute name="title">
                          <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:name_filter']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988078']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'">107</xsl:when>
                            <xsl:otherwise>25549</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="wcmprop.expimp:name_filter" size="30" type="text" value="" class="urEdfTxtEnbl" id="field_1177490988078">
                        <xsl:attribute name="title">
                          <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:name_filter']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988078']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">25549</xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                </xsl:when>
                <xsl:otherwise>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:name_filter'">
                      <input name="wcmprop.expimp:name_filter" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177490988078">
                        <xsl:attribute name="title">
                          <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:name_filter']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988078']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'">107</xsl:when>
                            <xsl:otherwise>25549</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:call-template name="printPropValues">
                            <xsl:with-param select="'expimp:name_filter'" name="propId"/>
                            <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                            <xsl:with-param select="'false'" name="useDisplayName"/>
                          </xsl:call-template>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="wcmprop.expimp:name_filter" size="30" type="text" class="urEdfTxtEnbl" id="field_1177490988078">
                        <xsl:attribute name="title">
                          <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:name_filter']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988078']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">25549</xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:call-template name="printPropValues">
                            <xsl:with-param select="'expimp:name_filter'" name="propId"/>
                            <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                            <xsl:with-param select="'false'" name="useDisplayName"/>
                          </xsl:call-template>
                        </xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                </xsl:otherwise>
              </xsl:choose>
            </nobr>
          </td>
          <td height="2%" valign="top" width="37%"/>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="23%" rowspan="1" colspan="5">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:depth_max'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177490988082" onclick="xf_focusLabel(this);" id="label_field_1177490988082">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988081']" 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_1177490988082" onclick="xf_focusLabel(this);" id="label_field_1177490988082">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988081']" 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="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="38%" rowspan="1" align="left" colspan="4">
            <nobr>
              <!--
                   property expimp:depth_max
              -->
              <xsl:choose>
                <xsl:when test="($editmode='create') and not(./xf:ValidationError)">
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:depth_max'">
                      <input name="wcmprop.expimp:depth_max" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177490988082">
                        <xsl:attribute name="title">
                          <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:depth_max']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988082']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'">111</xsl:when>
                            <xsl:otherwise>25551</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="'-1'"/>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="wcmprop.expimp:depth_max" size="30" type="text" class="urEdfTxtEnbl" id="field_1177490988082">
                        <xsl:attribute name="title">
                          <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:depth_max']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988082']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">25551</xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="'-1'"/>
                        </xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                  <!--
                       error block for expimp:depth_max
                  -->
                  <xsl:call-template name="error_block_template">
                    <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177490988082']" name="errText"/>
                    <xsl:with-param select="'wcmprop.expimp:depth_max'" name="variable"/>
                    <xsl:with-param select="'110'" name="tabindex"/>
                  </xsl:call-template>
                </xsl:when>
                <xsl:otherwise>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:depth_max'">
                      <input name="wcmprop.expimp:depth_max" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177490988082">
                        <xsl:attribute name="title">
                          <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:depth_max']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988082']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'">111</xsl:when>
                            <xsl:otherwise>25551</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:call-template name="printPropValues">
                            <xsl:with-param select="'expimp:depth_max'" name="propId"/>
                            <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                            <xsl:with-param select="'false'" name="useDisplayName"/>
                          </xsl:call-template>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="wcmprop.expimp:depth_max" size="30" type="text" class="urEdfTxtEnbl" id="field_1177490988082">
                        <xsl:attribute name="title">
                          <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:depth_max']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988082']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">25551</xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:call-template name="printPropValues">
                            <xsl:with-param select="'expimp:depth_max'" name="propId"/>
                            <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                            <xsl:with-param select="'false'" name="useDisplayName"/>
                          </xsl:call-template>
                        </xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                  <!--
                       error block for expimp:depth_max
                  -->
                  <xsl:call-template name="error_block_template">
                    <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177490988082']" name="errText"/>
                    <xsl:with-param select="'wcmprop.expimp:depth_max'" name="variable"/>
                    <xsl:with-param select="'110'" name="tabindex"/>
                  </xsl:call-template>
                </xsl:otherwise>
              </xsl:choose>
            </nobr>
          </td>
          <td height="2%" valign="top" width="37%"/>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="23%" rowspan="1" colspan="5">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:size_min'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177490988084" onclick="xf_focusLabel(this);" id="label_field_1177490988084">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988083']" 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_1177490988084" onclick="xf_focusLabel(this);" id="label_field_1177490988084">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988083']" 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="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="38%" rowspan="1" align="left" colspan="4">
            <nobr>
              <!--
                   property expimp:size_min
              -->
              <xsl:choose>
                <xsl:when test="($editmode='create') and not(./xf:ValidationError)">
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:size_min'">
                      <input name="wcmprop.expimp:size_min" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177490988084">
                        <xsl:attribute name="title">
                          <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:size_min']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988084']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'">115</xsl:when>
                            <xsl:otherwise>25553</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="'-1'"/>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="wcmprop.expimp:size_min" size="30" type="text" class="urEdfTxtEnbl" id="field_1177490988084">
                        <xsl:attribute name="title">
                          <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:size_min']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988084']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">25553</xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="'-1'"/>
                        </xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                  <!--
                       error block for expimp:size_min
                  -->
                  <xsl:call-template name="error_block_template">
                    <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177490988084']" name="errText"/>
                    <xsl:with-param select="'wcmprop.expimp:size_min'" name="variable"/>
                    <xsl:with-param select="'114'" name="tabindex"/>
                  </xsl:call-template>
                </xsl:when>
                <xsl:otherwise>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:size_min'">
                      <input name="wcmprop.expimp:size_min" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177490988084">
                        <xsl:attribute name="title">
                          <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:size_min']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988084']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'">115</xsl:when>
                            <xsl:otherwise>25553</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:call-template name="printPropValues">
                            <xsl:with-param select="'expimp:size_min'" name="propId"/>
                            <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                            <xsl:with-param select="'false'" name="useDisplayName"/>
                          </xsl:call-template>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="wcmprop.expimp:size_min" size="30" type="text" class="urEdfTxtEnbl" id="field_1177490988084">
                        <xsl:attribute name="title">
                          <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:size_min']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988084']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">25553</xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:call-template name="printPropValues">
                            <xsl:with-param select="'expimp:size_min'" name="propId"/>
                            <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                            <xsl:with-param select="'false'" name="useDisplayName"/>
                          </xsl:call-template>
                        </xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                  <!--
                       error block for expimp:size_min
                  -->
                  <xsl:call-template name="error_block_template">
                    <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177490988084']" name="errText"/>
                    <xsl:with-param select="'wcmprop.expimp:size_min'" name="variable"/>
                    <xsl:with-param select="'114'" name="tabindex"/>
                  </xsl:call-template>
                </xsl:otherwise>
              </xsl:choose>
            </nobr>
          </td>
          <td height="2%" valign="top" width="37%"/>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="23%" rowspan="1" colspan="5">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:size_max'">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177490988086" onclick="xf_focusLabel(this);" id="label_field_1177490988086">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988085']" 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_1177490988086" onclick="xf_focusLabel(this);" id="label_field_1177490988086">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988085']" 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="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="38%" rowspan="1" align="left" colspan="4">
            <nobr>
              <!--
                   property expimp:size_max
              -->
              <xsl:choose>
                <xsl:when test="($editmode='create') and not(./xf:ValidationError)">
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:size_max'">
                      <input name="wcmprop.expimp:size_max" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177490988086">
                        <xsl:attribute name="title">
                          <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:size_max']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988086']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'">119</xsl:when>
                            <xsl:otherwise>25555</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="'-1'"/>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="wcmprop.expimp:size_max" size="30" type="text" class="urEdfTxtEnbl" id="field_1177490988086">
                        <xsl:attribute name="title">
                          <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:size_max']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988086']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">25555</xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:value-of select="'-1'"/>
                        </xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                  <!--
                       error block for expimp:size_max
                  -->
                  <xsl:call-template name="error_block_template">
                    <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177490988086']" name="errText"/>
                    <xsl:with-param select="'wcmprop.expimp:size_max'" name="variable"/>
                    <xsl:with-param select="'118'" name="tabindex"/>
                  </xsl:call-template>
                </xsl:when>
                <xsl:otherwise>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:size_max'">
                      <input name="wcmprop.expimp:size_max" size="30" type="text" class="urEdfiTxtEnbl" id="field_1177490988086">
                        <xsl:attribute name="title">
                          <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:size_max']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988086']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">
                          <xsl:choose>
                            <xsl:when test="$accessibilitymode='true'">119</xsl:when>
                            <xsl:otherwise>25555</xsl:otherwise>
                          </xsl:choose>
                        </xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:call-template name="printPropValues">
                            <xsl:with-param select="'expimp:size_max'" name="propId"/>
                            <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                            <xsl:with-param select="'false'" name="useDisplayName"/>
                          </xsl:call-template>
                        </xsl:attribute>
                      </input>
                    </xsl:when>
                    <xsl:otherwise>
                      <input name="wcmprop.expimp:size_max" size="30" type="text" class="urEdfTxtEnbl" id="field_1177490988086">
                        <xsl:attribute name="title">
                          <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:size_max']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988086']"/>
                        </xsl:attribute>
                        <xsl:choose>
                          <xsl:when test="$accessibilitymode='true'">
                            <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                            <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'true', '<xsl:choose>
                                <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                  <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                </xsl:when>
                                <xsl:otherwise>*</xsl:otherwise>
                              </xsl:choose>' );</xsl:attribute>
                          </xsl:when>
                        </xsl:choose>
                        <xsl:attribute name="tabindex">25555</xsl:attribute>
                        <xsl:attribute name="value">
                          <xsl:call-template name="printPropValues">
                            <xsl:with-param select="'expimp:size_max'" name="propId"/>
                            <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                            <xsl:with-param select="'false'" name="useDisplayName"/>
                          </xsl:call-template>
                        </xsl:attribute>
                      </input>
                    </xsl:otherwise>
                  </xsl:choose>
                  <!--
                       error block for expimp:size_max
                  -->
                  <xsl:call-template name="error_block_template">
                    <xsl:with-param select="$resources/TEXT[@AKEY='msg_H_1177490988086']" name="errText"/>
                    <xsl:with-param select="'wcmprop.expimp:size_max'" name="variable"/>
                    <xsl:with-param select="'118'" name="tabindex"/>
                  </xsl:call-template>
                </xsl:otherwise>
              </xsl:choose>
            </nobr>
          </td>
          <td height="2%" valign="top" width="37%"/>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="23%" rowspan="1" colspan="5">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:created_min' or (./xf:ValidationError/@tagname='wcmprop.expimp:created_min_date___') or (./xf:ValidationError/@tagname='wcmprop.expimp:created_min_time___')">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177490988119_date___" onclick="xf_focusLabel(this);" id="label_field_1177490988119_date___">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988087']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177490988119_date___" onclick="xf_focusLabel(this);" id="label_field_1177490988119_date___">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988087']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="38%" rowspan="1" align="left" colspan="4">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <table cellpadding="0" cellspacing="0">
                    <tr>
                      <td>
                        <!--
                             property expimp:created_min_date___
                        -->
                        <xsl:choose>
                          <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:created_min_date___']) or not(./xf:resourceproperties/xf:property[@id='expimp:created_min_date___']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:created_min_date___']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                            <xsl:choose>
                              <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:created_min' or (./xf:ValidationError/@tagname='wcmprop.expimp:created_min_date___')">
                                <input name="wcmprop.expimp:created_min_date___" maxlength="10" size="12" type="text" value="" class="urEdfiTxtEnbl" id="field_1177490988119_date___">
                                  <xsl:attribute name="title">
                                    <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:created_min_date___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988119_date___']"/>
                                  </xsl:attribute>
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">
                                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                    </xsl:when>
                                  </xsl:choose>
                                  <xsl:attribute name="tabindex">
                                    <xsl:choose>
                                      <xsl:when test="$accessibilitymode='true'">123</xsl:when>
                                      <xsl:otherwise>25557</xsl:otherwise>
                                    </xsl:choose>
                                  </xsl:attribute>
                                </input>
                              </xsl:when>
                              <xsl:otherwise>
                                <input name="wcmprop.expimp:created_min_date___" maxlength="10" size="12" type="text" value="" class="urEdfTxtEnbl" id="field_1177490988119_date___">
                                  <xsl:attribute name="title">
                                    <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:created_min_date___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988119_date___']"/>
                                  </xsl:attribute>
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">
                                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                    </xsl:when>
                                  </xsl:choose>
                                  <xsl:attribute name="tabindex">25557</xsl:attribute>
                                </input>
                              </xsl:otherwise>
                            </xsl:choose>
                          </xsl:when>
                          <xsl:otherwise>
                            <xsl:choose>
                              <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:created_min' or (./xf:ValidationError/@tagname='wcmprop.expimp:created_min_date___')">
                                <input name="wcmprop.expimp:created_min_date___" maxlength="10" size="12" type="text" class="urEdfiTxtEnbl" id="field_1177490988119_date___">
                                  <xsl:attribute name="title">
                                    <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:created_min_date___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988119_date___']"/>
                                  </xsl:attribute>
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">
                                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                    </xsl:when>
                                  </xsl:choose>
                                  <xsl:attribute name="tabindex">
                                    <xsl:choose>
                                      <xsl:when test="$accessibilitymode='true'">123</xsl:when>
                                      <xsl:otherwise>25557</xsl:otherwise>
                                    </xsl:choose>
                                  </xsl:attribute>
                                  <xsl:attribute name="value">
                                    <xsl:call-template name="printPropValues">
                                      <xsl:with-param select="'expimp:created_min_date___'" name="propId"/>
                                      <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                      <xsl:with-param select="'false'" name="useDisplayName"/>
                                    </xsl:call-template>
                                  </xsl:attribute>
                                </input>
                              </xsl:when>
                              <xsl:otherwise>
                                <input name="wcmprop.expimp:created_min_date___" maxlength="10" size="12" type="text" class="urEdfTxtEnbl" id="field_1177490988119_date___">
                                  <xsl:attribute name="title">
                                    <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:created_min_date___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988119_date___']"/>
                                  </xsl:attribute>
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">
                                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                    </xsl:when>
                                  </xsl:choose>
                                  <xsl:attribute name="tabindex">25557</xsl:attribute>
                                  <xsl:attribute name="value">
                                    <xsl:call-template name="printPropValues">
                                      <xsl:with-param select="'expimp:created_min_date___'" name="propId"/>
                                      <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                      <xsl:with-param select="'false'" name="useDisplayName"/>
                                    </xsl:call-template>
                                  </xsl:attribute>
                                </input>
                              </xsl:otherwise>
                            </xsl:choose>
                          </xsl:otherwise>
                        </xsl:choose>
                      </td>
                      <td>
                        <xsl:choose>
                          <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:created_min' or (./xf:ValidationError/@tagname='wcmprop.expimp:created_min_date___')">
                            <nobr>
                              <a class="urEdfHlpDate">
                                <xsl:attribute name="title">
                                  <xsl:value-of select="$resources/TEXT[@AKEY='but_1177490988119_date___']"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_LD_1177490988119_date___']"/>
                                </xsl:attribute>
                                <xsl:attribute name="tabindex">
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">125</xsl:when>
                                    <xsl:otherwise>25558</xsl:otherwise>
                                  </xsl:choose>
                                </xsl:attribute>
                                <xsl:attribute name="href">JavaScript:openChildBrowserControl(document.rootform__.field_1177490988119_date___,'?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:call-template name="outputvalue">
                                  <xsl:with-param select="$resources/TEXT[@AKEY='but_1177490988119_date___']" name="value"/>
                                </xsl:call-template>
                              </a>
                            </nobr>
                          </xsl:when>
                          <xsl:otherwise>
                            <nobr>
                              <a class="urEdfHlpDate">
                                <xsl:attribute name="title">
                                  <xsl:value-of select="$resources/TEXT[@AKEY='but_1177490988119_date___']"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_LD_1177490988119_date___']"/>
                                </xsl:attribute>
                                <xsl:attribute name="tabindex">25559</xsl:attribute>
                                <xsl:attribute name="href">JavaScript:openChildBrowserControl(document.rootform__.field_1177490988119_date___,'?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:call-template name="outputvalue">
                                  <xsl:with-param select="$resources/TEXT[@AKEY='but_1177490988119_date___']" name="value"/>
                                </xsl:call-template>
                              </a>
                            </nobr>
                          </xsl:otherwise>
                        </xsl:choose>
                      </td>
                    </tr>
                  </table>
                </td>
                <td>&nbsp;</td>
                <td>
                  <!--
                       property expimp:created_min_time___
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:created_min_time___']) or not(./xf:resourceproperties/xf:property[@id='expimp:created_min_time___']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:created_min_time___']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:created_min' or (./xf:ValidationError/@tagname='wcmprop.expimp:created_min_time___')">
                          <input name="wcmprop.expimp:created_min_time___" maxlength="8" size="8" type="text" value="" class="urEdfiTxtEnbl" id="field_1177490988119_time___">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:created_min_time___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988119_time___']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">
                              <xsl:choose>
                                <xsl:when test="$accessibilitymode='true'">129</xsl:when>
                                <xsl:otherwise>25560</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:created_min_time___" maxlength="8" size="8" type="text" value="" class="urEdfTxtEnbl" id="field_1177490988119_time___">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:created_min_time___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988119_time___']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">25560</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:created_min' or (./xf:ValidationError/@tagname='wcmprop.expimp:created_min_time___')">
                          <input name="wcmprop.expimp:created_min_time___" maxlength="8" size="8" type="text" class="urEdfiTxtEnbl" id="field_1177490988119_time___">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:created_min_time___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988119_time___']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">
                              <xsl:choose>
                                <xsl:when test="$accessibilitymode='true'">129</xsl:when>
                                <xsl:otherwise>25560</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:created_min_time___'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:created_min_time___" maxlength="8" size="8" type="text" class="urEdfTxtEnbl" id="field_1177490988119_time___">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:created_min_time___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988119_time___']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">25560</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:created_min_time___'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:created_min
            -->
            <xsl:if test="./xf:ValidationError/@tagname='wcmprop.expimp:created_min' or (./xf:ValidationError/@tagname='wcmprop.expimp:created_min_date___') or (./xf:ValidationError/@tagname='wcmprop.expimp:created_min_time___') and (normalize-space($resources/TEXT[@AKEY='msg_H_1177490988119'])!='' or normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:created_min_date___']/xf:message)!='' or normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:created_min_time___']/xf:message)!='' or normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:created_min']/xf:message)!='')">
              <table cellpadding="1" cellspacing="0">
                <tr>
                  <td valign="top" width="6">
                    <img>
                      <xsl:attribute name="src"><xsl:value-of select="$imagepath"/>/status_error.gif</xsl:attribute>
                    </img>
                  </td>
                  <td valign="top">
                    <font class="urTxtLbl">
                      <a>
                        <xsl:attribute name="tabindex">
                          <xsl:if test="$accessibilitymode='true'">122</xsl:if>
                        </xsl:attribute>
                        <xsl:value-of select="$resources/TEXT[@AKEY='null']"/>
                        <xsl:choose>
                          <xsl:when test="normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:created_min_date___']/xf:message)!=''">
                            <xsl:if test="normalize-space($resources/TEXT[@AKEY='msg_H_1177490988119'])!=''">
                              <xsl:value-of select="' '"/>
                            </xsl:if>
                            <xsl:value-of select="./xf:ValidationError[@tagname='wcmprop.expimp:created_min_date___']/xf:message"/>
                          </xsl:when>
                          <xsl:when test="normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:created_min_time___']/xf:message)!=''">
                            <xsl:if test="normalize-space($resources/TEXT[@AKEY='msg_H_1177490988119'])!=''">
                              <xsl:value-of select="' '"/>
                            </xsl:if>
                            <xsl:value-of select="./xf:ValidationError[@tagname='wcmprop.expimp:created_min_time___']/xf:message"/>
                          </xsl:when>
                          <xsl:when test="normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:created_min']/xf:message)!=''">
                            <xsl:if test="normalize-space($resources/TEXT[@AKEY='msg_H_1177490988119'])!=''">
                              <xsl:value-of select="' '"/>
                            </xsl:if>
                            <xsl:value-of select="./xf:ValidationError[@tagname='wcmprop.expimp:created_min']/xf:message"/>
                          </xsl:when>
                        </xsl:choose>
                      </a>
                    </font>
                  </td>
                </tr>
              </table>
            </xsl:if>
            <input name="wcmprop.expimp:created_min" type="hidden" value="" id="field_1177490988119"/>
          </td>
          <td height="2%" valign="top" width="37%"/>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="23%" rowspan="1" colspan="5">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:created_max' or (./xf:ValidationError/@tagname='wcmprop.expimp:created_max_date___') or (./xf:ValidationError/@tagname='wcmprop.expimp:created_max_time___')">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177490988187_date___" onclick="xf_focusLabel(this);" id="label_field_1177490988187_date___">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988089']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177490988187_date___" onclick="xf_focusLabel(this);" id="label_field_1177490988187_date___">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988089']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="38%" rowspan="1" align="left" colspan="4">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <table cellpadding="0" cellspacing="0">
                    <tr>
                      <td>
                        <!--
                             property expimp:created_max_date___
                        -->
                        <xsl:choose>
                          <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:created_max_date___']) or not(./xf:resourceproperties/xf:property[@id='expimp:created_max_date___']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:created_max_date___']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                            <xsl:choose>
                              <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:created_max' or (./xf:ValidationError/@tagname='wcmprop.expimp:created_max_date___')">
                                <input name="wcmprop.expimp:created_max_date___" maxlength="10" size="12" type="text" value="" class="urEdfiTxtEnbl" id="field_1177490988187_date___">
                                  <xsl:attribute name="title">
                                    <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:created_max_date___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988187_date___']"/>
                                  </xsl:attribute>
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">
                                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                    </xsl:when>
                                  </xsl:choose>
                                  <xsl:attribute name="tabindex">
                                    <xsl:choose>
                                      <xsl:when test="$accessibilitymode='true'">133</xsl:when>
                                      <xsl:otherwise>25562</xsl:otherwise>
                                    </xsl:choose>
                                  </xsl:attribute>
                                </input>
                              </xsl:when>
                              <xsl:otherwise>
                                <input name="wcmprop.expimp:created_max_date___" maxlength="10" size="12" type="text" value="" class="urEdfTxtEnbl" id="field_1177490988187_date___">
                                  <xsl:attribute name="title">
                                    <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:created_max_date___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988187_date___']"/>
                                  </xsl:attribute>
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">
                                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                    </xsl:when>
                                  </xsl:choose>
                                  <xsl:attribute name="tabindex">25562</xsl:attribute>
                                </input>
                              </xsl:otherwise>
                            </xsl:choose>
                          </xsl:when>
                          <xsl:otherwise>
                            <xsl:choose>
                              <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:created_max' or (./xf:ValidationError/@tagname='wcmprop.expimp:created_max_date___')">
                                <input name="wcmprop.expimp:created_max_date___" maxlength="10" size="12" type="text" class="urEdfiTxtEnbl" id="field_1177490988187_date___">
                                  <xsl:attribute name="title">
                                    <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:created_max_date___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988187_date___']"/>
                                  </xsl:attribute>
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">
                                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                    </xsl:when>
                                  </xsl:choose>
                                  <xsl:attribute name="tabindex">
                                    <xsl:choose>
                                      <xsl:when test="$accessibilitymode='true'">133</xsl:when>
                                      <xsl:otherwise>25562</xsl:otherwise>
                                    </xsl:choose>
                                  </xsl:attribute>
                                  <xsl:attribute name="value">
                                    <xsl:call-template name="printPropValues">
                                      <xsl:with-param select="'expimp:created_max_date___'" name="propId"/>
                                      <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                      <xsl:with-param select="'false'" name="useDisplayName"/>
                                    </xsl:call-template>
                                  </xsl:attribute>
                                </input>
                              </xsl:when>
                              <xsl:otherwise>
                                <input name="wcmprop.expimp:created_max_date___" maxlength="10" size="12" type="text" class="urEdfTxtEnbl" id="field_1177490988187_date___">
                                  <xsl:attribute name="title">
                                    <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:created_max_date___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988187_date___']"/>
                                  </xsl:attribute>
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">
                                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                    </xsl:when>
                                  </xsl:choose>
                                  <xsl:attribute name="tabindex">25562</xsl:attribute>
                                  <xsl:attribute name="value">
                                    <xsl:call-template name="printPropValues">
                                      <xsl:with-param select="'expimp:created_max_date___'" name="propId"/>
                                      <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                      <xsl:with-param select="'false'" name="useDisplayName"/>
                                    </xsl:call-template>
                                  </xsl:attribute>
                                </input>
                              </xsl:otherwise>
                            </xsl:choose>
                          </xsl:otherwise>
                        </xsl:choose>
                      </td>
                      <td>
                        <xsl:choose>
                          <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:created_max' or (./xf:ValidationError/@tagname='wcmprop.expimp:created_max_date___')">
                            <nobr>
                              <a class="urEdfHlpDate">
                                <xsl:attribute name="title">
                                  <xsl:value-of select="$resources/TEXT[@AKEY='but_1177490988187_date___']"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_LD_1177490988187_date___']"/>
                                </xsl:attribute>
                                <xsl:attribute name="tabindex">
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">135</xsl:when>
                                    <xsl:otherwise>25563</xsl:otherwise>
                                  </xsl:choose>
                                </xsl:attribute>
                                <xsl:attribute name="href">JavaScript:openChildBrowserControl(document.rootform__.field_1177490988187_date___,'?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:call-template name="outputvalue">
                                  <xsl:with-param select="$resources/TEXT[@AKEY='but_1177490988187_date___']" name="value"/>
                                </xsl:call-template>
                              </a>
                            </nobr>
                          </xsl:when>
                          <xsl:otherwise>
                            <nobr>
                              <a class="urEdfHlpDate">
                                <xsl:attribute name="title">
                                  <xsl:value-of select="$resources/TEXT[@AKEY='but_1177490988187_date___']"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_LD_1177490988187_date___']"/>
                                </xsl:attribute>
                                <xsl:attribute name="tabindex">25564</xsl:attribute>
                                <xsl:attribute name="href">JavaScript:openChildBrowserControl(document.rootform__.field_1177490988187_date___,'?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:call-template name="outputvalue">
                                  <xsl:with-param select="$resources/TEXT[@AKEY='but_1177490988187_date___']" name="value"/>
                                </xsl:call-template>
                              </a>
                            </nobr>
                          </xsl:otherwise>
                        </xsl:choose>
                      </td>
                    </tr>
                  </table>
                </td>
                <td>&nbsp;</td>
                <td>
                  <!--
                       property expimp:created_max_time___
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:created_max_time___']) or not(./xf:resourceproperties/xf:property[@id='expimp:created_max_time___']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:created_max_time___']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:created_max' or (./xf:ValidationError/@tagname='wcmprop.expimp:created_max_time___')">
                          <input name="wcmprop.expimp:created_max_time___" maxlength="8" size="8" type="text" value="" class="urEdfiTxtEnbl" id="field_1177490988187_time___">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:created_max_time___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988187_time___']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">
                              <xsl:choose>
                                <xsl:when test="$accessibilitymode='true'">139</xsl:when>
                                <xsl:otherwise>25565</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:created_max_time___" maxlength="8" size="8" type="text" value="" class="urEdfTxtEnbl" id="field_1177490988187_time___">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:created_max_time___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988187_time___']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">25565</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:created_max' or (./xf:ValidationError/@tagname='wcmprop.expimp:created_max_time___')">
                          <input name="wcmprop.expimp:created_max_time___" maxlength="8" size="8" type="text" class="urEdfiTxtEnbl" id="field_1177490988187_time___">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:created_max_time___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988187_time___']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">
                              <xsl:choose>
                                <xsl:when test="$accessibilitymode='true'">139</xsl:when>
                                <xsl:otherwise>25565</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:created_max_time___'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:created_max_time___" maxlength="8" size="8" type="text" class="urEdfTxtEnbl" id="field_1177490988187_time___">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:created_max_time___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988187_time___']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">25565</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:created_max_time___'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:created_max
            -->
            <xsl:if test="./xf:ValidationError/@tagname='wcmprop.expimp:created_max' or (./xf:ValidationError/@tagname='wcmprop.expimp:created_max_date___') or (./xf:ValidationError/@tagname='wcmprop.expimp:created_max_time___') and (normalize-space($resources/TEXT[@AKEY='msg_H_1177490988187'])!='' or normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:created_max_date___']/xf:message)!='' or normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:created_max_time___']/xf:message)!='' or normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:created_max']/xf:message)!='')">
              <table cellpadding="1" cellspacing="0">
                <tr>
                  <td valign="top" width="6">
                    <img>
                      <xsl:attribute name="src"><xsl:value-of select="$imagepath"/>/status_error.gif</xsl:attribute>
                    </img>
                  </td>
                  <td valign="top">
                    <font class="urTxtLbl">
                      <a>
                        <xsl:attribute name="tabindex">
                          <xsl:if test="$accessibilitymode='true'">132</xsl:if>
                        </xsl:attribute>
                        <xsl:value-of select="$resources/TEXT[@AKEY='null']"/>
                        <xsl:choose>
                          <xsl:when test="normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:created_max_date___']/xf:message)!=''">
                            <xsl:if test="normalize-space($resources/TEXT[@AKEY='msg_H_1177490988187'])!=''">
                              <xsl:value-of select="' '"/>
                            </xsl:if>
                            <xsl:value-of select="./xf:ValidationError[@tagname='wcmprop.expimp:created_max_date___']/xf:message"/>
                          </xsl:when>
                          <xsl:when test="normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:created_max_time___']/xf:message)!=''">
                            <xsl:if test="normalize-space($resources/TEXT[@AKEY='msg_H_1177490988187'])!=''">
                              <xsl:value-of select="' '"/>
                            </xsl:if>
                            <xsl:value-of select="./xf:ValidationError[@tagname='wcmprop.expimp:created_max_time___']/xf:message"/>
                          </xsl:when>
                          <xsl:when test="normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:created_max']/xf:message)!=''">
                            <xsl:if test="normalize-space($resources/TEXT[@AKEY='msg_H_1177490988187'])!=''">
                              <xsl:value-of select="' '"/>
                            </xsl:if>
                            <xsl:value-of select="./xf:ValidationError[@tagname='wcmprop.expimp:created_max']/xf:message"/>
                          </xsl:when>
                        </xsl:choose>
                      </a>
                    </font>
                  </td>
                </tr>
              </table>
            </xsl:if>
            <input name="wcmprop.expimp:created_max" type="hidden" value="" id="field_1177490988187"/>
          </td>
          <td height="2%" valign="top" width="37%"/>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="23%" rowspan="1" colspan="5">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:modified_min' or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_min_date___') or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_min_time___')">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177490988188_date___" onclick="xf_focusLabel(this);" id="label_field_1177490988188_date___">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988091']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177490988188_date___" onclick="xf_focusLabel(this);" id="label_field_1177490988188_date___">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988091']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="38%" rowspan="1" align="left" colspan="4">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <table cellpadding="0" cellspacing="0">
                    <tr>
                      <td>
                        <!--
                             property expimp:modified_min_date___
                        -->
                        <xsl:choose>
                          <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:modified_min_date___']) or not(./xf:resourceproperties/xf:property[@id='expimp:modified_min_date___']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:modified_min_date___']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                            <xsl:choose>
                              <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:modified_min' or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_min_date___')">
                                <input name="wcmprop.expimp:modified_min_date___" maxlength="10" size="12" type="text" value="" class="urEdfiTxtEnbl" id="field_1177490988188_date___">
                                  <xsl:attribute name="title">
                                    <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:modified_min_date___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988188_date___']"/>
                                  </xsl:attribute>
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">
                                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                    </xsl:when>
                                  </xsl:choose>
                                  <xsl:attribute name="tabindex">
                                    <xsl:choose>
                                      <xsl:when test="$accessibilitymode='true'">143</xsl:when>
                                      <xsl:otherwise>25567</xsl:otherwise>
                                    </xsl:choose>
                                  </xsl:attribute>
                                </input>
                              </xsl:when>
                              <xsl:otherwise>
                                <input name="wcmprop.expimp:modified_min_date___" maxlength="10" size="12" type="text" value="" class="urEdfTxtEnbl" id="field_1177490988188_date___">
                                  <xsl:attribute name="title">
                                    <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:modified_min_date___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988188_date___']"/>
                                  </xsl:attribute>
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">
                                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                    </xsl:when>
                                  </xsl:choose>
                                  <xsl:attribute name="tabindex">25567</xsl:attribute>
                                </input>
                              </xsl:otherwise>
                            </xsl:choose>
                          </xsl:when>
                          <xsl:otherwise>
                            <xsl:choose>
                              <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:modified_min' or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_min_date___')">
                                <input name="wcmprop.expimp:modified_min_date___" maxlength="10" size="12" type="text" class="urEdfiTxtEnbl" id="field_1177490988188_date___">
                                  <xsl:attribute name="title">
                                    <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:modified_min_date___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988188_date___']"/>
                                  </xsl:attribute>
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">
                                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                    </xsl:when>
                                  </xsl:choose>
                                  <xsl:attribute name="tabindex">
                                    <xsl:choose>
                                      <xsl:when test="$accessibilitymode='true'">143</xsl:when>
                                      <xsl:otherwise>25567</xsl:otherwise>
                                    </xsl:choose>
                                  </xsl:attribute>
                                  <xsl:attribute name="value">
                                    <xsl:call-template name="printPropValues">
                                      <xsl:with-param select="'expimp:modified_min_date___'" name="propId"/>
                                      <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                      <xsl:with-param select="'false'" name="useDisplayName"/>
                                    </xsl:call-template>
                                  </xsl:attribute>
                                </input>
                              </xsl:when>
                              <xsl:otherwise>
                                <input name="wcmprop.expimp:modified_min_date___" maxlength="10" size="12" type="text" class="urEdfTxtEnbl" id="field_1177490988188_date___">
                                  <xsl:attribute name="title">
                                    <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:modified_min_date___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988188_date___']"/>
                                  </xsl:attribute>
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">
                                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                    </xsl:when>
                                  </xsl:choose>
                                  <xsl:attribute name="tabindex">25567</xsl:attribute>
                                  <xsl:attribute name="value">
                                    <xsl:call-template name="printPropValues">
                                      <xsl:with-param select="'expimp:modified_min_date___'" name="propId"/>
                                      <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                      <xsl:with-param select="'false'" name="useDisplayName"/>
                                    </xsl:call-template>
                                  </xsl:attribute>
                                </input>
                              </xsl:otherwise>
                            </xsl:choose>
                          </xsl:otherwise>
                        </xsl:choose>
                      </td>
                      <td>
                        <xsl:choose>
                          <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:modified_min' or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_min_date___')">
                            <nobr>
                              <a class="urEdfHlpDate">
                                <xsl:attribute name="title">
                                  <xsl:value-of select="$resources/TEXT[@AKEY='but_1177490988188_date___']"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_LD_1177490988188_date___']"/>
                                </xsl:attribute>
                                <xsl:attribute name="tabindex">
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">145</xsl:when>
                                    <xsl:otherwise>25568</xsl:otherwise>
                                  </xsl:choose>
                                </xsl:attribute>
                                <xsl:attribute name="href">JavaScript:openChildBrowserControl(document.rootform__.field_1177490988188_date___,'?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:call-template name="outputvalue">
                                  <xsl:with-param select="$resources/TEXT[@AKEY='but_1177490988188_date___']" name="value"/>
                                </xsl:call-template>
                              </a>
                            </nobr>
                          </xsl:when>
                          <xsl:otherwise>
                            <nobr>
                              <a class="urEdfHlpDate">
                                <xsl:attribute name="title">
                                  <xsl:value-of select="$resources/TEXT[@AKEY='but_1177490988188_date___']"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_LD_1177490988188_date___']"/>
                                </xsl:attribute>
                                <xsl:attribute name="tabindex">25569</xsl:attribute>
                                <xsl:attribute name="href">JavaScript:openChildBrowserControl(document.rootform__.field_1177490988188_date___,'?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:call-template name="outputvalue">
                                  <xsl:with-param select="$resources/TEXT[@AKEY='but_1177490988188_date___']" name="value"/>
                                </xsl:call-template>
                              </a>
                            </nobr>
                          </xsl:otherwise>
                        </xsl:choose>
                      </td>
                    </tr>
                  </table>
                </td>
                <td>&nbsp;</td>
                <td>
                  <!--
                       property expimp:modified_min_time___
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:modified_min_time___']) or not(./xf:resourceproperties/xf:property[@id='expimp:modified_min_time___']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:modified_min_time___']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:modified_min' or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_min_time___')">
                          <input name="wcmprop.expimp:modified_min_time___" maxlength="8" size="8" type="text" value="" class="urEdfiTxtEnbl" id="field_1177490988188_time___">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:modified_min_time___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988188_time___']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">
                              <xsl:choose>
                                <xsl:when test="$accessibilitymode='true'">149</xsl:when>
                                <xsl:otherwise>25570</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:modified_min_time___" maxlength="8" size="8" type="text" value="" class="urEdfTxtEnbl" id="field_1177490988188_time___">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:modified_min_time___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988188_time___']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">25570</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:modified_min' or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_min_time___')">
                          <input name="wcmprop.expimp:modified_min_time___" maxlength="8" size="8" type="text" class="urEdfiTxtEnbl" id="field_1177490988188_time___">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:modified_min_time___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988188_time___']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">
                              <xsl:choose>
                                <xsl:when test="$accessibilitymode='true'">149</xsl:when>
                                <xsl:otherwise>25570</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:modified_min_time___'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:modified_min_time___" maxlength="8" size="8" type="text" class="urEdfTxtEnbl" id="field_1177490988188_time___">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:modified_min_time___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988188_time___']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">25570</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:modified_min_time___'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:modified_min
            -->
            <xsl:if test="./xf:ValidationError/@tagname='wcmprop.expimp:modified_min' or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_min_date___') or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_min_time___') and (normalize-space($resources/TEXT[@AKEY='msg_H_1177490988188'])!='' or normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:modified_min_date___']/xf:message)!='' or normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:modified_min_time___']/xf:message)!='' or normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:modified_min']/xf:message)!='')">
              <table cellpadding="1" cellspacing="0">
                <tr>
                  <td valign="top" width="6">
                    <img>
                      <xsl:attribute name="src"><xsl:value-of select="$imagepath"/>/status_error.gif</xsl:attribute>
                    </img>
                  </td>
                  <td valign="top">
                    <font class="urTxtLbl">
                      <a>
                        <xsl:attribute name="tabindex">
                          <xsl:if test="$accessibilitymode='true'">142</xsl:if>
                        </xsl:attribute>
                        <xsl:value-of select="$resources/TEXT[@AKEY='null']"/>
                        <xsl:choose>
                          <xsl:when test="normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:modified_min_date___']/xf:message)!=''">
                            <xsl:if test="normalize-space($resources/TEXT[@AKEY='msg_H_1177490988188'])!=''">
                              <xsl:value-of select="' '"/>
                            </xsl:if>
                            <xsl:value-of select="./xf:ValidationError[@tagname='wcmprop.expimp:modified_min_date___']/xf:message"/>
                          </xsl:when>
                          <xsl:when test="normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:modified_min_time___']/xf:message)!=''">
                            <xsl:if test="normalize-space($resources/TEXT[@AKEY='msg_H_1177490988188'])!=''">
                              <xsl:value-of select="' '"/>
                            </xsl:if>
                            <xsl:value-of select="./xf:ValidationError[@tagname='wcmprop.expimp:modified_min_time___']/xf:message"/>
                          </xsl:when>
                          <xsl:when test="normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:modified_min']/xf:message)!=''">
                            <xsl:if test="normalize-space($resources/TEXT[@AKEY='msg_H_1177490988188'])!=''">
                              <xsl:value-of select="' '"/>
                            </xsl:if>
                            <xsl:value-of select="./xf:ValidationError[@tagname='wcmprop.expimp:modified_min']/xf:message"/>
                          </xsl:when>
                        </xsl:choose>
                      </a>
                    </font>
                  </td>
                </tr>
              </table>
            </xsl:if>
            <input name="wcmprop.expimp:modified_min" type="hidden" value="" id="field_1177490988188"/>
          </td>
          <td height="2%" valign="top" width="37%"/>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;1%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="23%" rowspan="1" colspan="5">
            <p>
              <span class="urLblStd urTxtStd">
                <nobr>
                  <xsl:choose>
                    <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:modified_max' or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_max_date___') or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_max_time___')">
                      <span class="urTxtNeg">
                        <label ffoorr="field_1177490988189_date___" onclick="xf_focusLabel(this);" id="label_field_1177490988189_date___">
                          <xsl:call-template name="outputvalue">
                            <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988093']" name="value"/>
                          </xsl:call-template>
                        </label>
                      </span>
                    </xsl:when>
                    <xsl:otherwise>
                      <label ffoorr="field_1177490988189_date___" onclick="xf_focusLabel(this);" id="label_field_1177490988189_date___">
                        <xsl:call-template name="outputvalue">
                          <xsl:with-param select="$resources/TEXT[@AKEY='lbl_1177490988093']" name="value"/>
                        </xsl:call-template>
                      </label>
                    </xsl:otherwise>
                  </xsl:choose>
                </nobr>
              </span>
            </p>
          </td>
          <td height="2%" valign="top" width="2%"/>
          <td height="2%" valign="top" width="38%" rowspan="1" align="left" colspan="4">
            <table cellpadding="0" cellspacing="0">
              <tr>
                <td>
                  <table cellpadding="0" cellspacing="0">
                    <tr>
                      <td>
                        <!--
                             property expimp:modified_max_date___
                        -->
                        <xsl:choose>
                          <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:modified_max_date___']) or not(./xf:resourceproperties/xf:property[@id='expimp:modified_max_date___']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:modified_max_date___']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                            <xsl:choose>
                              <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:modified_max' or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_max_date___')">
                                <input name="wcmprop.expimp:modified_max_date___" maxlength="10" size="12" type="text" value="" class="urEdfiTxtEnbl" id="field_1177490988189_date___">
                                  <xsl:attribute name="title">
                                    <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:modified_max_date___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988189_date___']"/>
                                  </xsl:attribute>
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">
                                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                    </xsl:when>
                                  </xsl:choose>
                                  <xsl:attribute name="tabindex">
                                    <xsl:choose>
                                      <xsl:when test="$accessibilitymode='true'">153</xsl:when>
                                      <xsl:otherwise>25572</xsl:otherwise>
                                    </xsl:choose>
                                  </xsl:attribute>
                                </input>
                              </xsl:when>
                              <xsl:otherwise>
                                <input name="wcmprop.expimp:modified_max_date___" maxlength="10" size="12" type="text" value="" class="urEdfTxtEnbl" id="field_1177490988189_date___">
                                  <xsl:attribute name="title">
                                    <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:modified_max_date___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988189_date___']"/>
                                  </xsl:attribute>
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">
                                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                    </xsl:when>
                                  </xsl:choose>
                                  <xsl:attribute name="tabindex">25572</xsl:attribute>
                                </input>
                              </xsl:otherwise>
                            </xsl:choose>
                          </xsl:when>
                          <xsl:otherwise>
                            <xsl:choose>
                              <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:modified_max' or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_max_date___')">
                                <input name="wcmprop.expimp:modified_max_date___" maxlength="10" size="12" type="text" class="urEdfiTxtEnbl" id="field_1177490988189_date___">
                                  <xsl:attribute name="title">
                                    <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:modified_max_date___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988189_date___']"/>
                                  </xsl:attribute>
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">
                                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                    </xsl:when>
                                  </xsl:choose>
                                  <xsl:attribute name="tabindex">
                                    <xsl:choose>
                                      <xsl:when test="$accessibilitymode='true'">153</xsl:when>
                                      <xsl:otherwise>25572</xsl:otherwise>
                                    </xsl:choose>
                                  </xsl:attribute>
                                  <xsl:attribute name="value">
                                    <xsl:call-template name="printPropValues">
                                      <xsl:with-param select="'expimp:modified_max_date___'" name="propId"/>
                                      <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                      <xsl:with-param select="'false'" name="useDisplayName"/>
                                    </xsl:call-template>
                                  </xsl:attribute>
                                </input>
                              </xsl:when>
                              <xsl:otherwise>
                                <input name="wcmprop.expimp:modified_max_date___" maxlength="10" size="12" type="text" class="urEdfTxtEnbl" id="field_1177490988189_date___">
                                  <xsl:attribute name="title">
                                    <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:modified_max_date___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988189_date___']"/>
                                  </xsl:attribute>
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">
                                      <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                      <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                          <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                            <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                          </xsl:when>
                                          <xsl:otherwise>*</xsl:otherwise>
                                        </xsl:choose>' );</xsl:attribute>
                                    </xsl:when>
                                  </xsl:choose>
                                  <xsl:attribute name="tabindex">25572</xsl:attribute>
                                  <xsl:attribute name="value">
                                    <xsl:call-template name="printPropValues">
                                      <xsl:with-param select="'expimp:modified_max_date___'" name="propId"/>
                                      <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                      <xsl:with-param select="'false'" name="useDisplayName"/>
                                    </xsl:call-template>
                                  </xsl:attribute>
                                </input>
                              </xsl:otherwise>
                            </xsl:choose>
                          </xsl:otherwise>
                        </xsl:choose>
                      </td>
                      <td>
                        <xsl:choose>
                          <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:modified_max' or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_max_date___')">
                            <nobr>
                              <a class="urEdfHlpDate">
                                <xsl:attribute name="title">
                                  <xsl:value-of select="$resources/TEXT[@AKEY='but_1177490988189_date___']"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_LD_1177490988189_date___']"/>
                                </xsl:attribute>
                                <xsl:attribute name="tabindex">
                                  <xsl:choose>
                                    <xsl:when test="$accessibilitymode='true'">155</xsl:when>
                                    <xsl:otherwise>25573</xsl:otherwise>
                                  </xsl:choose>
                                </xsl:attribute>
                                <xsl:attribute name="href">JavaScript:openChildBrowserControl(document.rootform__.field_1177490988189_date___,'?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:call-template name="outputvalue">
                                  <xsl:with-param select="$resources/TEXT[@AKEY='but_1177490988189_date___']" name="value"/>
                                </xsl:call-template>
                              </a>
                            </nobr>
                          </xsl:when>
                          <xsl:otherwise>
                            <nobr>
                              <a class="urEdfHlpDate">
                                <xsl:attribute name="title">
                                  <xsl:value-of select="$resources/TEXT[@AKEY='but_1177490988189_date___']"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_LD_1177490988189_date___']"/>
                                </xsl:attribute>
                                <xsl:attribute name="tabindex">25574</xsl:attribute>
                                <xsl:attribute name="href">JavaScript:openChildBrowserControl(document.rootform__.field_1177490988189_date___,'?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:call-template name="outputvalue">
                                  <xsl:with-param select="$resources/TEXT[@AKEY='but_1177490988189_date___']" name="value"/>
                                </xsl:call-template>
                              </a>
                            </nobr>
                          </xsl:otherwise>
                        </xsl:choose>
                      </td>
                    </tr>
                  </table>
                </td>
                <td>&nbsp;</td>
                <td>
                  <!--
                       property expimp:modified_max_time___
                  -->
                  <xsl:choose>
                    <xsl:when test="(not(./xf:resourceproperties/xf:property[@id='expimp:modified_max_time___']) or not(./xf:resourceproperties/xf:property[@id='expimp:modified_max_time___']/xf:values/xf:valuedef/xf:value) or ./xf:resourceproperties/xf:property[@id='expimp:modified_max_time___']/xf:values/xf:valuedef/xf:value='') and ($editmode='create')">
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:modified_max' or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_max_time___')">
                          <input name="wcmprop.expimp:modified_max_time___" maxlength="8" size="8" type="text" value="" class="urEdfiTxtEnbl" id="field_1177490988189_time___">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:modified_max_time___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988189_time___']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">
                              <xsl:choose>
                                <xsl:when test="$accessibilitymode='true'">159</xsl:when>
                                <xsl:otherwise>25575</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:modified_max_time___" maxlength="8" size="8" type="text" value="" class="urEdfTxtEnbl" id="field_1177490988189_time___">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:modified_max_time___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988189_time___']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">25575</xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:when>
                    <xsl:otherwise>
                      <xsl:choose>
                        <xsl:when test="./xf:ValidationError/@tagname='wcmprop.expimp:modified_max' or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_max_time___')">
                          <input name="wcmprop.expimp:modified_max_time___" maxlength="8" size="8" type="text" class="urEdfiTxtEnbl" id="field_1177490988189_time___">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:modified_max_time___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988189_time___']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">
                              <xsl:choose>
                                <xsl:when test="$accessibilitymode='true'">159</xsl:when>
                                <xsl:otherwise>25575</xsl:otherwise>
                              </xsl:choose>
                            </xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:modified_max_time___'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:when>
                        <xsl:otherwise>
                          <input name="wcmprop.expimp:modified_max_time___" maxlength="8" size="8" type="text" class="urEdfTxtEnbl" id="field_1177490988189_time___">
                            <xsl:attribute name="title">
                              <xsl:value-of select="./xf:resourceproperties/xf:property[@id='expimp:modified_max_time___']/xf:values/xf:valuedef/xf:value"/> - <xsl:value-of select="$resources/TEXT[@AKEY='tol_T_1177490988189_time___']"/>
                            </xsl:attribute>
                            <xsl:choose>
                              <xsl:when test="$accessibilitymode='true'">
                                <xsl:attribute name="onmouseover">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                                <xsl:attribute name="onfocus">javascript:xf_updateInputTitleWithLabel( this.id, 'label_'+this.id, 'false', '<xsl:choose>
                                    <xsl:when test="string-length(document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']) &gt; 0">
                                      <xsl:value-of select="document(concat('wcm://etc/xmlforms/XFBuilderConfig/', $globalresfile))/ROOT/RESOURCES/TEXT[@AKEY='XF_REQUIRED_FIELD']"/>
                                    </xsl:when>
                                    <xsl:otherwise>*</xsl:otherwise>
                                  </xsl:choose>' );</xsl:attribute>
                              </xsl:when>
                            </xsl:choose>
                            <xsl:attribute name="tabindex">25575</xsl:attribute>
                            <xsl:attribute name="value">
                              <xsl:call-template name="printPropValues">
                                <xsl:with-param select="'expimp:modified_max_time___'" name="propId"/>
                                <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                                <xsl:with-param select="'false'" name="useDisplayName"/>
                              </xsl:call-template>
                            </xsl:attribute>
                          </input>
                        </xsl:otherwise>
                      </xsl:choose>
                    </xsl:otherwise>
                  </xsl:choose>
                </td>
              </tr>
            </table>
            <!--
                 error block for expimp:modified_max
            -->
            <xsl:if test="./xf:ValidationError/@tagname='wcmprop.expimp:modified_max' or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_max_date___') or (./xf:ValidationError/@tagname='wcmprop.expimp:modified_max_time___') and (normalize-space($resources/TEXT[@AKEY='msg_H_1177490988189'])!='' or normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:modified_max_date___']/xf:message)!='' or normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:modified_max_time___']/xf:message)!='' or normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:modified_max']/xf:message)!='')">
              <table cellpadding="1" cellspacing="0">
                <tr>
                  <td valign="top" width="6">
                    <img>
                      <xsl:attribute name="src"><xsl:value-of select="$imagepath"/>/status_error.gif</xsl:attribute>
                    </img>
                  </td>
                  <td valign="top">
                    <font class="urTxtLbl">
                      <a>
                        <xsl:attribute name="tabindex">
                          <xsl:if test="$accessibilitymode='true'">152</xsl:if>
                        </xsl:attribute>
                        <xsl:value-of select="$resources/TEXT[@AKEY='null']"/>
                        <xsl:choose>
                          <xsl:when test="normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:modified_max_date___']/xf:message)!=''">
                            <xsl:if test="normalize-space($resources/TEXT[@AKEY='msg_H_1177490988189'])!=''">
                              <xsl:value-of select="' '"/>
                            </xsl:if>
                            <xsl:value-of select="./xf:ValidationError[@tagname='wcmprop.expimp:modified_max_date___']/xf:message"/>
                          </xsl:when>
                          <xsl:when test="normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:modified_max_time___']/xf:message)!=''">
                            <xsl:if test="normalize-space($resources/TEXT[@AKEY='msg_H_1177490988189'])!=''">
                              <xsl:value-of select="' '"/>
                            </xsl:if>
                            <xsl:value-of select="./xf:ValidationError[@tagname='wcmprop.expimp:modified_max_time___']/xf:message"/>
                          </xsl:when>
                          <xsl:when test="normalize-space(./xf:ValidationError[@tagname='wcmprop.expimp:modified_max']/xf:message)!=''">
                            <xsl:if test="normalize-space($resources/TEXT[@AKEY='msg_H_1177490988189'])!=''">
                              <xsl:value-of select="' '"/>
                            </xsl:if>
                            <xsl:value-of select="./xf:ValidationError[@tagname='wcmprop.expimp:modified_max']/xf:message"/>
                          </xsl:when>
                        </xsl:choose>
                      </a>
                    </font>
                  </td>
                </tr>
              </table>
            </xsl:if>
            <input name="wcmprop.expimp:modified_max" type="hidden" value="" id="field_1177490988189"/>
          </td>
          <td height="2%" valign="top" width="37%"/>
        </tr>
        <tr>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;10%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;4%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot;/&gt;</xsl:text>
        </tr>
        <tr>
          <td height="2%" valign="top" width="25%" rowspan="1" colspan="6">
            <!--
                 ADDING ITEM CALL FOR item1
            -->
            <xsl:call-template name="item1"/>
          </td>
          <xsl:text disable-output-escaping="yes">&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;8%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;23%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;6%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;2%&quot;/&gt;&lt;td height=&quot;2%&quot; valign=&quot;top&quot; width=&quot;37%&quot; align=&quot;left&quot;/&gt;</xsl:text>
        </tr>
      </table>
      <input name="mandatoryFields" type="hidden" value="wcmprop.expimp:size_min;wcmprop.expimp:rid0;wcmprop.default:displayname;wcmprop.expimp:size_max;wcmprop.expimp:depth_max"/>
    </xsl:template>
    <!--
         MAIN ITEM TEMPLATE
    -->
    <xsl:template name="item1">
      <!--
           grouping with id 1177490987985
      -->
      <p>
        <nobr>
          <a class="urBtnEmph">
            <xsl:attribute name="tabindex">25577</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:call-template name="outputvalue">
              <xsl:with-param select="$resources/TEXT[@AKEY='but_1177490987891']" name="value"/>
            </xsl:call-template>
          </a>
          <span class="urTxtStd">
            <xsl:call-template name="outputvalue">
              <xsl:with-param select="$resources/TEXT[@AKEY='msg_1177490987892']" name="value"/>
            </xsl:call-template>
          </span>
          <a class="urBtnStd">
            <xsl:attribute name="tabindex">25579</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:call-template name="outputvalue">
              <xsl:with-param select="$resources/TEXT[@AKEY='but_1177490987893']" name="value"/>
            </xsl:call-template>
          </a>
          <br/>
        </nobr>
      </p>
    </xsl:template>
    <!--
         ROOT TEMPLATE
    -->
    <xsl:template match="DataModel">
      <!--
           HTML HEADER
      -->
      <html>
        <!--
             JAVA SCRIPT SECTION
        -->
        <script language="JavaScript">
          <xsl:comment>
          function _htmlb_external_submit_(){window.location.reload();} 
 function open_url(url){var tmpurl="";if (url.charAt(0) == '/') {tmpurl=encodeXmlFormsUri(url);} else {tmpurl=encodeURI(url);}var xinfo="";xinfo=window.open(tmpurl)} 
 function open_url_with_params(url,params){var xinfo="";xinfo=window.open(url,'_blank',params)} 
 function getProtAndHost(){
   return window.location.protocol+'//'+window.location.host
}

 function HrefSubmit(event, resource){ 
try{
 xf_beforeSavingSeperatedEditors();
} catch(e) {
  alert('error while trying to save editors, id98435f'); 
}
 document.rootform__.submit_event.value=event;document.rootform__.submit_resource.value=resource;document.rootform__.submit();} var x=location.hostname.indexOf('.')+1;if (x>0) document.domain=location.hostname.substring(x);var popup_emptydoc = '/htmlb/jslib/emptyhover.html';
 function encodeXmlFormsUri(uri) {if (uri == null) return null;var parts = uri.split('/');var i;uri = '';for (i=0;i&lt;parts.length;i++) {if (i&gt;0) {uri += '/';}uri += encodeURIComponent(parts[i]);}return uri;}<xsl:if test="$authorpreviewresource!=''">open_url('<xsl:value-of select="$previewservlet"/>?XMLFormID='+encodeXmlFormsUri('SAP_TransportPackage')+'&amp;show/test='+encodeXmlFormsUri('<xsl:value-of select="$authorpreviewresource"/>')+'&amp;authorpreview=true');</xsl:if>
 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_1177490987879_dn']!=''">
                <xsl:value-of select="$resources/TEXT[@AKEY='tit_global_1177490987879_dn']"/>
              </xsl:when>
              <xsl:when test="$resources/TEXT[@AKEY='lbl_global_1177490987879_dn']!=''">
                <xsl:value-of select="$resources/TEXT[@AKEY='lbl_global_1177490987879_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>Transport Package</xsl:otherwise>
            </xsl:choose>
          </title>
        </head>
        <style type="text/css">body {}</style>
        <body class="prtlBody urFontBaseFam urScrl urGrpBdyBoxBgColor">
          <xsl:if test="$docorientation!=''">
            <xsl:attribute name="dir">
              <xsl:value-of select="$docorientation"/>
            </xsl:attribute>
          </xsl:if>
          <form onreset="javascript:resetHTMLEditors()" name="rootform__">
            <xsl:if test="./xf:XMLForm/xf:action">
              <xsl:attribute name="action">
                <xsl:value-of select="./xf:XMLForm/xf:action"/>
              </xsl:attribute>
            </xsl:if>
            <xsl:choose>
              <xsl:when test="./xf:XMLForm/xf:method">
                <xsl:attribute name="method">
                  <xsl:value-of select="./xf:XMLForm/xf:method"/>
                </xsl:attribute>
              </xsl:when>
              <xsl:otherwise>
                <xsl:attribute name="method">POST</xsl:attribute>
              </xsl:otherwise>
            </xsl:choose>
            <!--
                 HIDDEN FORM FIELDS GENERATION
            -->
            <xsl:apply-templates select="xf:formsparameters"/>
            <input name="submit_event" type="hidden" value=""/>
            <input name="submit_resource" type="hidden" value=""/>
            <!--
                 property expimp:id
            -->
            <xsl:choose>
              <xsl:when test="($editmode='create')">
                <input name="wcmprop.expimp:id" type="hidden" id="field_1177856242620">
                  <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">25580</xsl:attribute>
                  <xsl:attribute name="value">
                    <xsl:value-of select="$guid"/>
                  </xsl:attribute>
                </input>
              </xsl:when>
              <xsl:otherwise>
                <input name="wcmprop.expimp:id" type="hidden" id="field_1177856242620">
                  <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">25580</xsl:attribute>
                  <xsl:attribute name="value">
                    <xsl:call-template name="printPropValues">
                      <xsl:with-param select="'expimp:id'" name="propId"/>
                      <xsl:with-param select="'no'" name="disableOutputEscaping"/>
                      <xsl:with-param select="'false'" name="useDisplayName"/>
                    </xsl:call-template>
                  </xsl:attribute>
                </input>
              </xsl:otherwise>
            </xsl:choose>
            <!--
                 MAIN ITEM TEMPLATE CALL
            -->
            <xsl:call-template name="item"/>
            <xsl:for-each select="/DataModel/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">25495</xsl:attribute>
                  <xsl:attribute name="value">
                    <xsl:if test=".=''">
                      <xsl:value-of select="$guid"/>
                    </xsl:if>
                    <xsl:if test=".!=''">
                      <xsl:value-of select="."/>
                    </xsl:if>
                  </xsl:attribute>
                </input>
              </xsl:if>
              <xsl:if test="@type='hidden'">
                <xsl:value-of select="."/>
              </xsl:if>
            </xsl:for-each>
          </form>
        </body>
        <script language="JavaScript">
          <xsl:attribute name="src"/>
          <xsl:attribute name="src">
            <xsl:value-of select="$xmlformsroot"/>/javascript/debug-functions.js</xsl:attribute>
        </script>
        <script language="JavaScript">
          <xsl:attribute name="src"/>
          <xsl:attribute name="src">
            <xsl:value-of select="$xmlformsroot"/>/javascript/xmlforms-utils.js</xsl:attribute>
        </script>
        <script language="JavaScript">
          <xsl:comment>
          var multiValuedFields=new Array();
          //</xsl:comment>
        </script>
      </html>
    </xsl:template>
  </xsl:stylesheet>