$(document).ready(function() {

  $('a.next').mousedown(function(event){
    if(event.button=="2"){
      event.preventDefault();
      alert('Right click is disabled, sorry!');
    }
  });

  $("a.next").click(function (event){ 
    var id=$(this).attr('id');
    $(this).attr('href',$("#pdf"+id).val());
  });

});
