Image image = new Image(url);
image.setHeight(photo.getHeight() + "px");
image.setWidth(photo.getWidth() + "px");
final PromptDialogBox promptDialog = new PromptDialogBox("Preview", "Close", null, null, true, true);
promptDialog.setContent(image);
promptDialog.center();
} else if ("audio/mpeg".equals(object.getContentType())) {
String url = BaseApplication.getSettings().getString("GetFileService", BaseApplication.GET_FILE_SERVICE_PATH) + object.getId() + "_inline_" + object.getName();
String name = ((File) object).getName();
MP3Player.getInstance().addSoundToPlayList(name, url);
MP3Player.getInstance().play();