void showFzzlModalDialog(string url)
        {
            IHTMLDocument2 document     = browser.Document;
            IHTMLWindow2   window       = document.parentWindow;
            int            screenWidth  = window.screen.width;
            int            screenHeight = window.screen.height;

            log.WriteLog("访问辅助诊疗页面:" + url);
            window.showModalDialog(url, "辅助诊疗",
                                   "dialogWidth=" + (screenWidth * 0.9) + "px;dialogHeight=" + (screenHeight * 0.8) + "px;center=yes");
            //window.open(url, "辅助诊疗", "width=" + (screenWidth * 0.9) + ",height=" + (screenHeight * 0.8));
        }