// SPOT
function getSpotSearchBanaerHtml(spot_id, ad_url) {

    $.post('/search/beauty/adpr/spot/', {spot_id : spot_id, ad_url : ad_url}, function(_html) {
        writeHtml(_html, ad_url);
    });
}

// EVENT
function getEventSearchBanaerHtml(cam_id, ad_url) {

    $.post('/search/beauty/adpr/cam/', {cam_id : cam_id, ad_url : ad_url}, function(_html) {
        writeHtml(_html, ad_url);
    });
}

// COUPON
function getCouponSearchBanaerHtml(spot_id, coupon_id, ad_url) {

    $.post('/search/beauty/adpr/coupon/', {spot_id : spot_id, coupon_id : coupon_id, ad_url : ad_url}, function(_html) {
        writeHtml(_html, ad_url);
    });
}

function writeHtml(_html, ad_url) {

    $('#Adplan_JS').append(_html);
//  $('#Adplan_PR').append(_html);
//  $('#Adplan_JS').hide();
}

