button.setForeground( new Color( display, 255, 255, 255 ) );
button.setBackground( new Color( display, 191, 37, 39 ) );
button.addSelectionListener( new SelectionAdapter() {
@Override
public void widgetSelected( SelectionEvent e ) {
appLauncher.open( new MapsOptions( "3828 Piermont Dr. NE ABQ, NM" ) );
}
} );
}