function clipCoupon(id, publisherId) {
  window.open('/offers/' + id +  '/print?publisher_id=' + publisherId ,'_blank',
              'height=748,width=400,resizable=yes,scrollbars=yes,status=no,menubar=no,toolbar=no,titlebar=no');
  return false;  
}

function cancelClipping(offerId, mode) {
  $('offer_' + offerId + '_' + mode + '_panel').hide();
  Effect.SlideDown('offer_' + offerId + '_front_panel');
}

function finishClipping(offerId) {
  var confirmation_panel = 'offer_' + offerId + '_confirmation_panel';
  Effect.Fade(confirmation_panel, { duration: 5, queue: "end", afterFinish: function() { $(confirmation_panel).remove()} });
  Effect.BlindDown('offer_' + offerId + '_front_panel', { duration: 0.1, queue: "end" });
}

function fbs_click(url, title) {
  window.open(
    'http://www.facebook.com/sharer.php?u='+encodeURIComponent(url)+'&t='+encodeURIComponent(title),
    'sharer',
    'toolbar=0,status=0,width=626,height=436');
  return false;
}

