if (sender == signOutLink) {
Window.alert("If this were implemented, you would be signed out now.");
} else if (sender == aboutLink) {
// When the 'About' item is selected, show the AboutDialog.
// Note that showing a dialog box does not block -- execution continues
// normally, and the dialog fires an event when it is closed.
AboutDialog dlg = new AboutDialog();
dlg.show();
dlg.center();
}