
  /* Pop-up Link (Feuilleter) */
  $(document).ready( function() {
    /*$('A[rel="external"]').click( function() {
        window.open( $(this).attr('href'), "Feuilleteur", "width=600,height=470,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,personalbar=no,resizable=no");
        return false;
    });   */
    fl = jQuery('#feuilletLink');
    fpopup = jQuery('#feuilletContent');
    fl.eq(0).click(function(){
    fpopup.eq(0).dialog('open').html('<iframe src="'+fl.eq(0).attr('href')+'" width="600" height="470" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>');
      return false; 
    });
    
    fpopup.eq(0).dialog({
      modal: true,
      autoOpen: false,
      width: 600,
      height:492,
      dialogClass: "zoomImageBloc",
      resizable: false,
      draggable: false,
      bgiframe: true
    });
  });
