//The NewWindow2 event, used on Windows XP SP1 and below
            public void NewWindow2(ref object pDisp, ref bool cancel)
            {
                var args = new BrowserExtendedNavigatingEventArgs(pDisp, null, null, UrlContext.None);

                _Browser.OnStartNewWindow(args);
                cancel = args.Cancel;
                pDisp  = args.AutomationObject;
            }