jQuery(function(){
$('.listen-link').click(function(){
  var uri = $(this).attr('href');
  var top = parseInt(($(window).height() - 150) / 2);
  var left = parseInt(($(window).width() - 300) / 2);

  var options = 'height=150,width=300';
  options += ',top=' + top;
  options += ',left=' + left;
  var newwindow = window.open(uri, 'Sermon Player', options);
  if (window.focus) { newwindow.focus() }
  return false;
  });
});
