// NewWindow3 event, used on Windows XP SP2 and higher
            public void NewWindow3(ref object ppDisp, ref bool Cancel, uint dwFlags, string bstrUrlContext, string bstrUrl)
            {
                BrowserExtendedNavigatingEventArgs args = new BrowserExtendedNavigatingEventArgs(ppDisp, new Uri(bstrUrl), null);

                _Browser.OnStartNewWindow(args, (NativeMethods.NWMF)dwFlags);
                Cancel = args.Cancel;
                ppDisp = args.AutomationObject;
            }