* Opens a Question dialog. The message can either be a string or a resource key.
* @param msg Message string or resource key.
* @return
*/
public static boolean displayQuestion(String msg) {
QuestionBox mb = new QuestionBox(msg.startsWith("msg") ? DcResources.getText(msg) : msg);
open(mb);
return mb.isAffirmative();
}