How to use menu to open browser with predetermined URL?

Hello all,

I found in the help a method to create a custom desktop control which launches the default browser, and in this case takes the user to wikipedia.
Me.URL = “http://www.wikipedia.org

Can anyone tell me how to this with a menu handler?

Thanks,
Tim

in the menu handler

SHOWURL("http://www.wikipedia.org")

builtin command, not custom control required.

Thanks Dave! Simplicity at its finest!
Tim