function delete_this_tag(tag_name, 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/delete_this_tag.php', true);
    req.send( { tag_name: tag_name, id: id } );
}