*/
public void getGuiJudMenu() {
Form res = new Form("Search");
if (infopool.containsKey("register")){
res.setLayout(new BoxLayout(BoxLayout.Y_AXIS));
TextField tf = new TextField( "", 32);
TextField tf2 = new TextField( "", 32);
TextField tf3 = new TextField( "", 64);
infopool.put("jud_name", tf);
infopool.put("jud_surname", tf2);
infopool.put("jud_mail", tf3);
res.addComponent(new MyLabel("Name"));
res.addComponent(tf);
res.addComponent(new MyLabel("Surname"));
res.addComponent(tf2);
res.addComponent(new MyLabel("Mail"));
res.addComponent(tf3);
}
else if (infopool.containsKey("search")) {
res.setLayout(new BoxLayout(BoxLayout.Y_AXIS));
//TextField tf = new TextField("", 32);
TextField tf2 = new TextField( "", 32);
TextField tf3 = new TextField("", 32);
TextField tf4 = new TextField( "", 32);
TextField tf5 = new TextField("", 32);
//infopool.put("jud_username", tf);
infopool.put("jud_name", tf2);
infopool.put("jud_surname", tf3);
infopool.put("jud_nick", tf4);
infopool.put("jud_mail", tf5);