*
* @param imageFileOrUrl specifies the iamge file or URL to display
* @return the new frame
*/
protected NavigatorImageDisplayFrame makeNavigatorImageDisplayFrame(String imageFileOrUrl) {
NavigatorImageDisplayFrame f = new NavigatorImageDisplayFrame(imageFileOrUrl);
f.getImageDisplayControl().getImageDisplay().setTitle(getAppName() + " - version " + getAppVersion());
f.setVisible(true);
return f;
}