I am unsure if this is the correct forum. I am in a large environment where peope have Netscape 4 and IE 4/Outlook. I have written Help Documentation using the HHCTRL.OCX Active X Control. I have made it stand alone and web based. If some one is using Netscape to access the web documentation the Active X Control fails. I would like to have VBSCRIPT code that will automatically load I.E. 4 to a particular web page (not just open a window, actually run the program).

I know how to do this from an Outlook Based form using VBSCRIPT.

Below is the example:

Sub Item_Open()
Set MyApp = Item.Application
Set Web = MyApp.CreateObject("InternetExplorer.Application")
Web.Visible = TRUE
Web.Navigate "www.yahoo.com"
End Sub

Does anybody know to use VBSCRIPT from a web page to achieve similar results?

Thanks!

Richard