Bring an app to the foreground??

When working in FileMaker, I have a button that performs an applescript:

tell application "Finder" to tell application "Remote Desktop" to launch

This works, but I want Remote Desktop to become the active, foreground application, is there a way to this?

Thanks a bunch!!!

This should work:

tell application "Remote Desktop" to activate

Great, thanks!!