$(document).ready(function() {

  $('.pop').bind('click', function(e) {
    popwindow(e);
  });

});

function popwindow(e){
  e.preventDefault();
  var href = $(e.target).attr('href');
  window.open(href,'','menubar=1,scrollbars=1,location=1,toolbar=1,width=840,height=600');
};
