agency_wrapper_1024x768 iwire_info
false
-ls-pt-lo-def- -ls-pt-lo-def-
      
    
  
  
    
      Agency left navigation component.  This component is used on every agency home page and all tertiary pages beneath them.
      Default
      agency_left_nav
      agency_left_nav
      
      
        
        0
        
        
        185
        500
        133
        0
        1
        true
      
      
      
        
        
        
      
      
      
        
          
          com.interwoven.livesite.external.impl.fileTools
          getLeftNav
        
      
      
        Default
        <!DOCTYPE html-entities SYSTEM "http://www.interwoven.com/livesite/xsl/xsl-html.dtd">
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <!-- Skin: Default (Default Browser Type) -->

  <xsl:include href="http://www.interwoven.com/livesite/xsl/HTMLTemplates.xsl"/>
  <xsl:include href="http://www.interwoven.com/livesite/xsl/StringTemplates.xsl"/>

<!-- Main XSLT Template START -->
  <xsl:template match="/">

  <div class="noprint left_nav">
      <!-- GNB Start-->
      <xsl:choose>
        <xsl:when test="Properties/Data/Result/fileContents/gnbHTML != ''">
          <xsl:value-of select="Properties/Data/Result/fileContents/gnbHTML" disable-output-escaping = "yes" />
        </xsl:when>
        <xsl:otherwise>
          <div class="noprint gnb_wrapper_null"></div>
        </xsl:otherwise>
      </xsl:choose>
      <!-- GNB End -->

      <!-- Left Navigation Start -->
      <xsl:value-of select="Properties/Data/Result/fileContents/leftNavHTML" disable-output-escaping = "yes" />
      <!-- Left Navigation End -->
  </div>

  </xsl:template>

</xsl:stylesheet>
      
    
    
      Footer Component - This component is used on every page
      Default
      footer
      footer
      
      
        
        86400
        
        
        880
        220
        740
        0
        0
        true
      
      
      
        
        
        
      
      
        
          
          
        
      
      
        
          templatedata/Global/state_wrapper/data/footer.xml
        
        
          
          com.interwoven.livesite.external.impl.fileTools
          getFileTimeStamp
        
      
      
        Default
        <!DOCTYPE html-entities SYSTEM "http://www.interwoven.com/livesite/xsl/xsl-html.dtd">
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <!-- Skin: Default (Default Browser Type) -->

  <xsl:include href="http://www.interwoven.com/livesite/xsl/HTMLTemplates.xsl"/>
  <xsl:include href="http://www.interwoven.com/livesite/xsl/StringTemplates.xsl"/>
  <xsl:template match="/">

    <div class="noprint footer">
      <hr class="horiz_rule"/>
      <xsl:choose>
        <xsl:when test="Properties/Datum/Option[@Selected='true']/Value = 'yes'">
          <span class="modified_date">Page updated: <xsl:value-of select="Properties/Data/Result/fileProperties/fileTimeStamp"/></span>
        </xsl:when>
        <xsl:otherwise>
          <br/><br/>
        </xsl:otherwise>
      </xsl:choose>
    </div>

    <xsl:value-of select="Properties/Data/Datum/DCR/page_component/html" disable-output-escaping = "yes" />
  </xsl:template>
</xsl:stylesheet>
      
    
    
      Dynamically displays horizontal breadcrumb navigation based on the Site Map.
      Default
      Horizontal_Breadcrumb
      Horizontal_Breadcrumb
      
      
        
        -1
        
        817
        16
        135
        186
        0
        true
      
      
      
        
        
        
      
      
        breadCrumb
        &nbsp;>&nbsp;
      
      
        false
        Home
        
          
          
          
          
        
        
          
            
          
          com.interwoven.livesite.external.impl.Breadcrumb
          displayBreadcrumb
        
      
      
        Default
        <!DOCTYPE html-entities SYSTEM "http://www.interwoven.com/livesite/xsl/xsl-html.dtd">
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <!-- Skin: Default (Default Browser Type) -->

  <xsl:variable name="homeLinkTarget" select="/Properties/Data/Datum[@ID='homeLinkTarget']
                                              /Option[@Selected='true']/Value"/>
  <xsl:variable name="componentId" select="/Properties/@ComponentID"/>

  <xsl:template match="/"> 
    <div>
      <xsl:attribute name="class"><xsl:value-of select="/Properties/Datum[@ID='HEADERCLASS']"/></xsl:attribute>

      <xsl:if test="/Properties/Data/Datum[@ID='displayHomeLink'] = 'true'">
        <span>
          <a href="$PAGE_LINK[{/Properties/Data/Result/Breadcrumb/StartPage}]">
            <xsl:if test="$homeLinkTarget != '' and $homeLinkTarget != 'none'">
              <xsl:attribute name="target">
                <xsl:value-of select="$homeLinkTarget"/>
              </xsl:attribute>
            </xsl:if>
            <xsl:choose>
              <xsl:when test="/Properties/Data/Datum[@ID='homeLinkLabel'] != ''">
                 <xsl:value-of select="/Properties/Data/Datum[@ID='homeLinkLabel']"/>
              </xsl:when>
              <xsl:otherwise>Home</xsl:otherwise>
            </xsl:choose>
          </a>
        </span>
        <xsl:if test="//Node">
          <span><xsl:value-of select="/Properties/Datum[@ID='separator']" disable-output-escaping="yes"/></span>
        </xsl:if>
      </xsl:if>
      <xsl:apply-templates select="//Node"/>
    </div>
  </xsl:template>

  <xsl:template match="Node">
    <xsl:choose>
      <xsl:when test="position() != last()">
        <span>
          <xsl:choose>
            <xsl:when test="Link/@Type != ''">
              <a href="{Link/Url}">
                <xsl:if test="$homeLinkTarget != '' and $homeLinkTarget != 'none'">
                  <xsl:attribute name="target">
                    <xsl:value-of select="$homeLinkTarget"/>
                  </xsl:attribute>
                </xsl:if>
              <xsl:value-of select="Label"/></a>
            </xsl:when>
            <xsl:otherwise>
              <xsl:value-of select="Label"/>
            </xsl:otherwise>
          </xsl:choose>
        </span>
        <span><xsl:value-of select="/Properties/Datum[@ID='separator']" disable-output-escaping="yes"/></span>
      </xsl:when>
      <xsl:otherwise>
        <span>
          <xsl:value-of select="Label"/>
        </span>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>

</xsl:stylesheet>
      
    
    
      Page title component.  This is used on tertiary pages.
      Default
      page_title
      page_title
      
      
        
        43200
        
        
        818
        78
        153
        186
        0
        true
      
      
      
        
        
        
      
      
      
        iWire General Information
        
          
            Global
            agency_settings
            agency_settings.xml
            agency_logo,logo_alt_tag
          
          com.interwoven.livesite.external.impl.templatingTools
          getDCRContents
        
      
      
        Default
        <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <!-- Skin: Default Skin (Default Browser Type) -->

  <xsl:include href="http://www.interwoven.com/livesite/xsl/HTMLTemplates.xsl"/>
  <xsl:include href="http://www.interwoven.com/livesite/xsl/StringTemplates.xsl"/>

  <xsl:template match="/">
    <div class="page_title" in-context-edit="{/Properties/Data/Datum[@Name='PageTitle']/@ID}"><xsl:value-of select="/Properties/Data/Datum[@Name='PageTitle']"/></div>

    <div class="small_agency_logo">
      <xsl:if test="//Properties/Data/Result/dcr/agency_logo != ''">
      <img>
        <xsl:attribute name="src">
          <xsl:value-of select="concat('$URL_PREFIX',//Properties/Data/Result/dcr/agency_logo)" />
        </xsl:attribute>
        <xsl:attribute name="alt">
          <xsl:value-of select="//Properties/Data/Result/dcr/logo_alt_tag" />
        </xsl:attribute>
      </img>
      </xsl:if>
    </div>

  </xsl:template>
</xsl:stylesheet>
      
    
    
      Agency banner component.  This component is used on every agency home page and all tertiary pages beneath them.
      Default
      agency_banner
      agency_banner
      
      
        
        43200
        
        
        1003
        55
        78
        0
        0
        true
      
      
      
        
        
        
      
      
      
        
          
            Global
            agency_settings
            agency_settings.xml
            agency_title,banner_image,banner_alt_tag,feedback
          
          com.interwoven.livesite.external.impl.templatingTools
          getDCRContents
        
      
      
        Default
        <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <!-- Skin: Default Skin (Default Browser Type) -->

  <xsl:include href="http://www.interwoven.com/livesite/xsl/HTMLTemplates.xsl"/>
  <xsl:include href="http://www.interwoven.com/livesite/xsl/StringTemplates.xsl"/>

  <xsl:template match="/">


    <script type="text/javascript">
      function changeFeedback()
      {
        var theform = document.forms.submitContact;
        if (typeof(theform) == "undefined")
        {
          setTimeout("changeFeedback();",100);
        }
        else
        {
          var numlinks = document.links.length;
          var wflink = document.links[numlinks-2];
          <xsl:choose>
            <xsl:when test="contains(//Properties/Data/Result/dcr/feedback,'@')">
          var newhref = wflink.href;
          newhref = newhref + "?address=<xsl:value-of select="//Properties/Data/Result/dcr/feedback" />";
          wflink.href=newhref;
            </xsl:when>
            <xsl:otherwise>
          wflink.href="<xsl:value-of select="//Properties/Data/Result/dcr/feedback" />";
            </xsl:otherwise>
          </xsl:choose>
          wflink.onclick="";
        }
      }
      changeFeedback();
    </script>

    <div class="noprint agency_banner">
      <div>
        <a>
          <xsl:attribute name="href">
            <xsl:value-of select="concat('$URL_PREFIX',//Properties/Data/Result/dcr/sites_path,'/index.page')" />
          </xsl:attribute>
          <xsl:attribute name="title">
            <xsl:value-of select="//Properties/Data/Result/dcr/agency_title" />
          </xsl:attribute>
          <xsl:value-of select="//Properties/Data/Result/dcr/agency_title"/>
        </a>
        <span>
          <xsl:if test="//Properties/Data/Result/dcr/banner_image != ''">
          <img>
            <xsl:attribute name="src">
              <xsl:value-of select="concat('$URL_PREFIX',//Properties/Data/Result/dcr/banner_image)" />
            </xsl:attribute>
            <xsl:attribute name="alt">
              <xsl:value-of select="//Properties/Data/Result/dcr/banner_alt_tag" />
            </xsl:attribute>
          </img>
          </xsl:if>
        </span>
      </div>
    </div>
    <div class="agency_banner_bottom_shade"><xsl:comment>banner bottom shade</xsl:comment></div>

  </xsl:template>
</xsl:stylesheet>
      
    
    
      FreeForm Text Area
      Default
      Free_Form
      Free_Form
      
      
        
        -1
        #FFFFFF
        680
        480
        240
        190
        0
        true
      
      
      
        
        
        
      
      
      
        
          
          <p>Effective for the calendar year 2009, all payroll service providers and businesses with 250 or more employees are required to report W-2 information electronically [<a href="http://arcweb.sos.state.or.us/rules/OARS_100/OAR_150/150_316.html" target="_blank">OAR 150-316.202(3)</a>].</p><p>The Oregon Department of Revenue will follow the same file specification for the W-2 information as the Social Security Administration.</p><p>The transmittal due date is March 31, 2010. Forms W-2 are filed electronically only; paper W-2s or other forms of media are not accepted.</p><p>Visit the <a href="http://www.ssa.gov/employer/pub.htm" target="_blank">Social Security Administration&#39;s website</a>  for more information about their EFW2 and EFW2C programs. Click <a href="$URL_PREFIX/sites/DOR/PERTAX/docs/iwire_specs.pdf">here</a>  for more information about Income and Wage Information Return E-Services (iWire).</p><p>Employers that do not use a payroll service and have fewer than 250 employees may also file their W-2s electronically if they choose, but will be required to file electronically starting with 2010 forms. Small employers (less than 50 employees) may also choose to file electronically now, but will be required to starting with 2011 forms.</p><p>For questions about submitting your text file in the iWire format or formatting questions, view our specifications in the iWire Publication.</p><p>For other information about filing information returns, visit our frequently asked questions page.</p><p>Note: 1099 forms are not required to be filed with Oregon Department of Revenue at this time.</p><p><a href="/DOR/PERTAX/docs/iwire_specs.pdf">2009 iWire file specifications for Form W-2<br /></a></p><p>Note: At this time, W-2c&#39;s should be filed via paper. <br /></p><p><a href="/DOR/PERTAX/docs/iWire_FAQ.pdf">Frequently asked questions</a>  </p><p><a href="$PAGE_LINK[PERTAX/iwire_troubleshoot]">Troubleshooting</a>&nbsp;<a href="$PAGE_LINK[PERTAX/iwire_troubleshoot]"> </a> </p><p><a href="https://secure.dor.state.or.us/iWire" target="_blank">Submission form</a> </p>
        
      
      
        Default
        <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <!-- Skin: Default (Default Browser Type) -->

  <xsl:import href="http://www.interwoven.com/livesite/xsl/HTMLTemplates.xsl"/>
  <xsl:import href="http://www.interwoven.com/livesite/xsl/StringTemplates.xsl"/>


  <xsl:template match="/">
        
        <!-- Loop through Group -->
        <xsl:for-each select ="Properties/Data/Group" > 
      
          <!-- If the user did NOT enter a SectionHeader, only print the text -->
          <xsl:if test="Datum[@Name='SectionHeader'] = '' " >
              <div in-context-edit="{Datum[@Name='Text']/@ID}" class="bodyTextIndent" >
                  <xsl:value-of select="Datum[@Name='Text']" disable-output-escaping="yes"/>      
              </div>
          </xsl:if>    

          <!-- If the user entered a SectionHeader, print the SectionHeader and text -->
          <xsl:if test="Datum[@Name='SectionHeader'] != '' " >
              <div class="H2" in-context-edit="{Datum[@Name='SectionHeader']/@ID}" >
                  <xsl:value-of select="Datum[@Name='SectionHeader']" disable-output-escaping="no"/>
              </div>
              <div in-context-edit="{Datum[@Name='Text']/@ID}" class="bodyTextIndent" >
                  <xsl:value-of select="Datum[@Name='Text']" disable-output-escaping="yes"/>
              </div>
         </xsl:if>


       </xsl:for-each>
          
  </xsl:template>

</xsl:stylesheet>


                    Top banner component.  This component is used on every page.
      Default
      top_banner
      top_banner
      
      
        
        86400
        
        
        1003
        78
        0
        0
        0
        true
      
      
      
        
        
        
      
      
      
        
          templatedata/Global/state_wrapper/data/top_banner.xml
        
      
      
        Default
        <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <!-- Skin: Default Skin (Default Browser Type) -->

  <xsl:include href="http://www.interwoven.com/livesite/xsl/HTMLTemplates.xsl"/>
  <xsl:include href="http://www.interwoven.com/livesite/xsl/StringTemplates.xsl"/>

  <xsl:template match="/">
    <xsl:value-of select="Properties/Data/Datum/DCR/page_component/html" disable-output-escaping = "yes" />
  </xsl:template>

</xsl:stylesheet>