Background
I've written a feature to make it easier for users to e-mail a document, like this SO question. I've implemented the solution according to this answer.
The feature's custom action adds a Send As Attachment option to the ECB menu of a document library:

When a user chooses Send As Attachment, they are redirected to this Send Document application page:

Requirement
Add an icon to the right of the 'To' and 'CC' fields. When this is clicked, it needs to open the user's Outlook Global Address List:

Once the user has chosen their recipients and clicked OK, the form should be populated with their choices. The form can then be submitted by clicking Send.
What I've Tried
SpreadsheetLauncher Control
The best way of doing this seems to be James Conard's solution of using the SpreadsheetLauncher Control from SharePoint's client-side API. Unfortuantely his code is no longer available for download (dead server) although I have tried e-mailing him. On the plus side, there is a reasonable example in the SDK here.
Using the SDK example I have been able to make the GAL dialog display. However once OK is clicked, Internet Explorer hangs for up to 30 seconds with the screen partially redrawn. When it returns, nothing has changed on the page and the DOM hasn't been updated with the dialog's selections.
I also have the problem of the given example being contained within an HTML form tag. Being an ASP.NET page, there is already a form tag on the page. I've tried using jQuery's AJAX functionality (which I've never tried before) to get around this and nothing seems to happen. I don't know how to pass through the form parameters correctly.
Ideas?
Has anyone else tried doing something like this solution and had success that they can share? Are there any other ideas on how this could be approached? (Note: purchasing a product isn't an option.)
Thanks in advance.
Update: The people picker control isn't an option because some users do not exist in MOSS' Active Directory import. Hence the need for displaying the Outlook GAL.
Update 2: I've ruled out the SpreadsheetLauncher control entirely. It doesn't appear to work correctly in MOSS 2007 at all and is only referenced by one out-of-the-box file but not used by it. The other disadvantage is its requirement on ActiveX which isn't a big deal inside the company but something I would prefer to avoid. I'll probably go with Sam's suggestion.
