public void openPaymentBookReportControlCenter(String idPerson, String IdRegistration) {
if(paymentBookReportControlCenter != null && !paymentBookReportControlCenter.isDisposed()) {
paymentBookReportControlCenter.dispose();
}
paymentBookReportControlCenter = new PaymentBookReportControlCenter(tabFolder, SWT.NONE, mainScreen, idPerson, IdRegistration);
paymentBookReportControlCenter.display();
tabFolder.setSelection(paymentBookReportControlCenter);
}