// now load the bookmarks
// from the bookmarksFile
File testBMF = new File(fEnv.getBookmarkFile());
if (testBMF.exists()) {
Table tempTable = new Table(2, 200);
tempTable.htmlLoad(fEnv.getBookmarkFile(), "");
int numI = tempTable.colSize();
// parse it
for (int i = 0; i < numI; i++) {
addNewBookmark(new SimpleBookmark(tempTable.inItem(1, i), tempTable.inItem(0, i)));