function checkCode(node_id,code) {    
    $('#status-report').html(loading_string);    
    $.getJSON(base_www + '/paidarticle/checkcode',{node_id:node_id,code:code}, function(data) {
      
        if (data.error == 'true') {
            $('#status-report').html(data.error_text);
        } else {
             $('#content-paid').html(data.text);
        }         
                
    });

}
