// String agentName = JOptionPane.showInputDialog(mainWnd, "Insert the agent local name:");
String container = node.getName();
AIDGui gui = new AIDGui(mainWnd);
gui.setTitle("Enter the AID for the agent to load");
AID agentAid = gui.ShowAIDGui(null, true, false);
if(agentAid != null) {
myRMA.loadAgent(agentAid, "JADE-DB", container);
}
}