* Opens an information dialog. The message can either be a string or a resource key.
* @param msg Message string or resource key.
* @return
*/
public static void displayMessage(String msg) {
MessageBox mb = new MessageBox(msg.startsWith("msg") ? DcResources.getText(msg) : msg, MessageBox._INFORMATION);
open(mb);
}