I try to open the current page in a new window when the user click on the Adsense ADS
<script>
  $(document).ready(function(){
    var link= $(location).attr('href');
    $('.pub').click(function(){
      window.open(link);
    });
  });
</script>
<div class="pub">
  here the ADS Code 
</div>