function reportspam(id, url, anchor)
{
    //alert('Report to ' + url + ' id = ' + id);
    $.post(url, { id: id},
        function(response)
        {
            anchor.innerHTML = response;
           
        });
    return false;
}

