private void init(String searchLocation, boolean savePswd, String servicesLocation)
{
ActionListener a = EventController.getActionListener();
Container contentPane = super.getContentPane();
JTabbedPane tabbedPane = new JTabbedPane();
BottomPane bottomPane = new BottomPane();
String cmd1 = String.valueOf(EventController.OP_PREFS_CONFIRM);
String cmd2 = String.valueOf(EventController.OP_PREFS_CANCEL);
bottomPane.getApproveButton().setActionCommand(cmd1);
bottomPane.getRejectButton().setActionCommand(cmd2);
bottomPane.getApproveButton().addActionListener(a);
bottomPane.getRejectButton().addActionListener(a);
this.generalPane = new GeneralPane(searchLocation);
this.securityPane = new SecurityPane(savePswd);
this.advancedPane = new AdvancedPane(servicesLocation);