* @param markerType e.g. 'image', 'bump_map',...
*/
private void chooseFileFromDirectory(JTextField textField, String markerType) {
JFileChooser fc = new JFileChooser();
fc.setFileSelectionMode(JFileChooser.FILES_ONLY);
XPlanetRessourceFinder rf = new XPlanetRessourceFinder();
String downloaderRootDir = rf.getRootDirectoryForDownloads();
String dir = downloaderRootDir + File.separator + "images";
// Select the directory
File f = new File(dir);
String selectedFileName = (String) textField.getText();
if (selectedFileName != null) {