$(document).ready( function() {
  $("A.player_pop_up").click(function() {
    document._playerwin = window.open($(this).attr('href'), 'vibeplayer', 'width=100,height=100,scrollbars=no,toolbar=no,location=no,resizable=no');
    try {
      if (document._playerwin) {
        setTimeout(function() {
          document._playerwin.focus();
        }, 200);
      }
    }catch(e) {
      
    }
    return false;
  });
});