/**
* Create a new Frame containing a Statistics panel connected to a crawler.
*/
public static Frame monitor (Crawler crawler) {
Frame win = new ClosableFrame ("Statistics: " + crawler.getName ());
Statistics stats = new Statistics ();
crawler.addCrawlListener (stats);
win.add ("Center", BorderPanel.wrap (stats, 5, 5, 5, 5));
win.pack ();
win.show ();
return win;
}