else if(type == FileChooserType.OPEN_GENERIC){
jfc = jfc_generic;
title = "Open";
}
jfc.setDialogTitle(title);
FileChooserResponse status = jfc.showOpenDialog(parent);
if(status == FileChooserResponse.APPROVE_OPTION){
File f = jfc.getSelectedFile();
saveLastDir(type, f.getParentFile());
return f;
}