JToolBar tb = tbf.createJToolBar("ToolBar");
tb.setFloatable(false);
getContentPane().add(p, BorderLayout.NORTH);
p.add(tb, BorderLayout.NORTH);
p.add(new javax.swing.JSeparator(), BorderLayout.CENTER);
p.add(locationBar = new LocationBar(), BorderLayout.SOUTH);
} catch (MissingResourceException e) {
System.out.println(e.getMessage());
System.exit(0);
}