confirm.setWidth((txtWidth + hmargin) + "px");
confirm.setHeight((vmargin + txtHeight + btnHeight) + "px");
confirm.getContent().setSizeFull();
// Modal position in the center
confirm.center();
confirm.setModal(true);
// Create content
final UIBuilder h = new UIBuilder(confirm.getContent());
Label text = h.label(message);