function abuse_post(post_or_comment, id) {  
    var req = new JsHttpRequest();
    req.onreadystatechange = function() { 
        if (window.hackerConsole) window.hackerConsole.out(req.responseText, '', 'Shell');
        if (req.readyState == 4) {
            alert(req.responseJS.alert_message);
        }
    }
    req.open(null, '/openscripts/JsHttpRequest/abuse_post.php', true);
    req.send( { post_or_comment: post_or_comment, id: id } );
}