The easiest solution would be to use a Python script that uses the 'webbrowser' module, and calls "webbrowser.open_new('m.wolframalpha.com')". But this will launch that url in a new page in the user's default system web browser, not in a child window in Fusion. But it would be a simple, cross platform solution.
To create a child window in Fusion with a web browser would be a more advanced problem, and depends on what behavior you expect (is this a modal or modeless window). From an in Fusion process script to do this modelessly, you would probably need to run a side thread (which likely means C++) and use a native library (e.g. Win32) to create a window, use whatever webbrowser library you choose created in that window, and manage the message loop on it. Not a trivial task. If you want to use your existing exe, by default it will create it's own root window. So you would either need to invoke it with the current Fusion process id as a command line arg, or have it search for the (hopefully only) running Fusion instance and get its process id, and when you create the browser window, set the parent to Fusion's main window.
Kris
Kris Kaplan