var url = 'http://' + location.host +'';



function editor_pick(editor_id, link_id, dom_id){
    
    dataString  = "action=editor_pick" + "&editor_id=" + editor_id + "&link_id=" + link_id;
    //alert(dataString); return false;
    
    jQuery.ajax({
        type: "POST",
        url: url + "/ajax.php",
        data:  dataString,

        success: function(response){                           
            jQuery('#editor_pick_' + dom_id).html(response);
            
        }
    });
   
}

function editor_unpick(editor_id, link_id, dom_id){
    
    dataString  = "action=editor_unpick" + "&editor_id=" + editor_id + "&link_id=" + link_id;
    //alert(dataString); return false;
    
    jQuery.ajax({
        type: "POST",
        url: url + "/ajax.php",
        data:  dataString,

        success: function(response){                           
            jQuery('#editor_pick_' + dom_id).html(response);
            
        }
    });
   
}