Element contentEl = body.dom.getChildNodes().getItem(1).cast();
msgEl = contentEl.getFirstChild().cast();
msgEl.setInnerHTML(message);
if (type == MessageBoxType.PROMPT) {
textBox = new TextField();
dialog.setFocusWidget(textBox);
textBox.render(contentEl, 2);
textBox.el().setWidth(GXT.isIE ? "100%" : "90%");
icon = null;
}