
  // ===========================
  // Jumps to the selected block
  // ===========================

  function pn_jumpToBlock() {

    sUrl = document.forms['pn_jump_form'].base_href.value;
    sUrl = sUrl + '&cp=' + document.forms['pn_jump_form'].cp.value;
    sUrl = sUrl + '&pp=' + document.forms['pn_jump_form'].pp.value;
    document.location = sUrl;

  }
  
  
  
  function openTopviewCropNew(sUrl) {

    /// UITGESCHAKELD OP VERZOEK GRA!!!
    alert('Deze functie is niet beschikbaar.');

    /*
    var sProperties = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes';
    var iWidth      = 440;
    var iHeight     = 240;
    var iLeft       = (screen.availWidth - iWidth) / 2;
    var iTop        = (screen.availHeight - iHeight) / 2;
    var sProperties = 'height=' + iHeight + ',width=' + iWidth + ',top=' + iTop + ',left=' + iLeft + ',' + sProperties;
    var oWin        = window.open(sUrl, 'topview_crop', sProperties);
    oWin.focus();
    */

  }


