        <script>
            var seqid = "780f05830c280d890994d50f1a40e61f7bcd135fc01024fe18f3d9cf0b8e6217b520ccd81fd348cecedd6a76282c64d06f375f1980b8a46b6dc6c284c92b108681ee4c1f7ec0424607a495b63957bf6d__captcha"
        </script>
        <script src="https://ssl.captcha.qq.com/TCaptcha.js"></script>
        <script>
            var captcha = new TencentCaptcha('2017163193', function(res){
                var captchaResult = []
                captchaResult.push(res.ret)

                if(res.ret === 0){
                    captchaResult.push(res.ticket)
                    captchaResult.push(res.randstr)
                    captchaResult.push(seqid)
                }

                var content = captchaResult.join('\n')
                loadXMLDoc("/WafCaptcha", content)
            })

            function loadXMLDoc(servPath, content) {
                var xmlhttp = null;
                if (window.XMLHttpRequest) {
                    xmlhttp = new XMLHttpRequest();
                }
                else if (window.ActiveXObject) {
                    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
                }

                if (xmlhttp != null) {
                    xmlhttp.open("POST", servPath, true);
                    xmlhttp.send(content);
                    xmlhttp.onreadystatechange = function() {
                        if (xmlhttp.readyState == 4) {
                            if (xmlhttp.status == 200) {
                                window.location.reload(true)
                            }
                        }
                    }
                }
            }

            captcha.show()

        </script>
    
