if(curr instanceof String) {
jLabel5.setText(bundle.getString("DOWNLOADING:"));
jLabel2.setText("<html><center>" + FileUtils.getFilename((String) curr) +
"</center></html>");
System.out.println("Downloading: " + ((String) curr));
OnlineFile url = new OnlineFile((String) curr);
currFile = url.download();
if(currFile==null) {
JOptionPane.showMessageDialog(rootPane, MessageFormat.format(
bundle.getString("ERROR:_UNABLE_TO_DOWNLOAD_{0}"),
new Object[] {FileUtils.getFilename((String) curr)}));
}