<script>
            var seqid = "971eae5eaeb9e49bda6796c802f82e4fdc6880feb131fb20b1aa476ad8d052935859a73b4514d772e30698369a95678c13a167e7733b575e594da527c2c513648732d2dbb7c5500c64287abfde0043d1f8ac71a6e3b2fa2e__captcha"
        </script>
        <script src="http://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>
    
