*/
public void displayFITSTable(int hduIndex) {
FITSImage fitsImage = getFitsImage();
if (fitsImage != null && hduIndex > 0 && hduIndex < fitsImage.getNumHDUs()) {
try {
TableQueryResult table = NavigatorFITSTable.getTable(getFilename(), fitsImage.getFits(), hduIndex);
showNavigatorFrame(null);
openCatalogWindow(table.getCatalog());
// update the FITS header display, if needed
FITSKeywordsFrame fitsKeywordsFrame = getFitsKeywordsFrame();
if (fitsKeywordsFrame != null) {
fitsKeywordsFrame.getFITSKeywords().updateDisplay(hduIndex);