* Static factory method for obtaining an instance of the
* {@link PopupBlockedInstructionalPopup}.
*/
public static PopupBlockedInstructionalPopup create(Resources res) {
View view = new View(res);
CenterPanel centerPanel = CenterPanel.create(res, view.getElement());
centerPanel.setHideOnEscapeEnabled(true);
return new PopupBlockedInstructionalPopup(view, centerPanel);
}