public static bool Close()
        {
            IEWrapper toClose = CurrentIE;

            if (toClose != null)
            {
                Detach(toClose);
                toClose.Close();
                return(true);
            }
            return(false);
        }