}
}
public void startSearchBook(String author, String title, String keywords, String condition, String sort)
{
SearchBooksThread sbt = new SearchBooksThread(this, controller);
LoadingFrame lf = new LoadingFrame(messages);
lfs.put(Long.valueOf(sbt.getId()), lf);
lf.setVisible(true);
sbts.put(Long.valueOf(sbt.getId()), sbt);
sbt.startThread(author, title, keywords, condition, sort);
}