var pdfPop=null;
$(document).ready(
  function(){
    $("table.verifInscription a.pdf").click(
      function () {
        try {
          if(pdfPop && pdfPop.document)  { 
            pdfPop.document.location.href=this.href;
            window.setTimeout("pdfPop.focus()",100);
          } else {
            pdfPop=window.open(this.href,'pdf','left=20, top=20, width=720, height=550,scrollbars=yes,resizable=yes');
          }
        } catch(e){
            pdfPop=window.open(this.href,'pdf','left=20, top=20, width=720, height=550,scrollbars=yes,resizable=yes');
        }
        return false;
      });
  }); 
