function dlgCharteClose(){ $("#dlg-charte").hide(); }
 
function dlgCharte(){
//------------------------------------------------------------------------------
  
  var top  = parseInt(($(window).height() / 2) - ((300) / 2));
  var left = parseInt(($(window).width() / 2) - ((600) / 2));
  
  $("#dlg-charte .dlg-ctn").css("top", top).css("left", left);
  
  $("#dlg-charte").show();
}

function dlgCharteInit(){
//------------------------------------------------------------------------------
  
  $("#bottom-menu .m2 a.charte").click(function(){
    dlgCharte();
    return false;
  });
  
  $(".engagements a.charte").click(function(){
    dlgCharte();
    return false;
  });
  
  $("#dlg-charte .close a").click(function(){
    dlgCharteClose();
    return false;
  });
  
}


