button.setForeground( new Color( display, 255, 255, 255 ) );
button.setBackground( new Color( display, 70, 124, 30 ) );
button.addSelectionListener( new SelectionAdapter() {
@Override
public void widgetSelected( SelectionEvent e ) {
appLauncher.open( new SMSOptions( "555 232 111 23",
"Hank, congratulations to your promotion. Cheers Walter" ) );
}
} );
}