function showPaper()
{
  var i;
  var sHtml;

  showNavigator( bNavMinimized );
  sHtml = '<table border=0 cellspacing=0 cellpadding=0>';
  sNums = '';
  for ( i=1; i<=Math.floor( iMaxPages / 10 + 1) * 10; i++ )
  {
    if ( i - Math.floor( i / 10 ) * 10 == 1 )
    {
      if ( sNums != '' )
        sNums += '</tr>';
      sNums += '<tr>';
    }
    if ( i <= iMaxPages )
      sNums += '<td class="selectPageNumber" align="right" onmouseover="setBackground( this, \'#F6F6E5\' );" onmouseout="setBackground( this, \'#E0E0C2\' );" title="Gehe zur Seite: ' + getDirectPageName( i ) + '"><a class="aselectPageNumber" href="#" onclick="doCloseGotoPage(\'' + getDirectPageName( i ) + '\');">' + i + '</a></td>';
    else
      if ( i > 10 )
        sNums += '<td class="selectPageDisabled"></td>';
  }
  sNums += '</tr>';
  sHtml += sNums + '</table>';
  sHtml += '<img src="' + getUrl( '/ksta/images/goto_line.gif' ) + '" border="0">';
  deleteCode( 'selectPage' );
  insertCode( 'selectPage', sHtml );
  sHtml = '<table width="100%" border=0 cellspacing=0 cellpadding=0>';
  for ( i=0; i<aRessorts.length; i++ )
    if ( aRessortLinks[i] == 0 )
      sHtml += '<tr><td class="ressortlist" id="Ressort' + i + '" name="Ressort' + i + '">' + aRessorts[i] + '</td></tr>';
    else
      sHtml += '<tr><td class="ressortlist" id="Ressort' + i + '" name="Ressort' + i + '"><a class="aressortList" href="#" onmousedown="doLoadRessort( \'' + getPageLink( aRessortLinks[i] ) + '\' );" onmouseover="setBackground( this, \'#F6F6E5\' );" onmouseout="setBackground( this, \'#E0E0C2\' );">' + aRessorts[i] + '</a></td></tr>';
  sHtml += '</table>';
  deleteCode( 'ressortList' );
  insertCode( 'ressortList', sHtml );
  sLastRessortPage = "";
  if ( iUsedPages == 2 )
    bPageLoad = true;
  bPageNext = false;
  bPageCount = true;
  parent.load.location.href = sRoot + getDirectPageLink( 1 );
}


