function setTheWidth(){
  var myFooterWidth = document.getElementById('footerWidth');
  var myFooterLinkBox = document.getElementById('footerLinkBox');

  if(myFooterWidth != null && myFooterLinkBox != null 
     && document.getElementById('shellHeaderWidth')!=null) {
    if(document.body.clientWidth>=1200) {
      document.getElementById('shellHeaderWidth').style.width="1200px";
      myFooterWidth.style.width="1200px";
      myFooterLinkBox.style.width="742px";
    } else {
      document.getElementById('shellHeaderWidth').style.width="990px";
      myFooterWidth.style.width="990px";
      myFooterLinkBox.style.width="532px";
    }
  }

  /* CLUB POPUP ON RESIZE */   
  if(document.getElementById('ccPopUpBtn') != null) {
    var posiX = jQuery('.cirqueClubPopUp').width();
    var posiY = 0;
    var posiToolTip = jQuery('div.cirqueClubButton').offset();
    var btnLenght = jQuery('div.cirqueClubButton').width();

    jQuery('.cirqueClubPopUpBtn')
      .css("top",(posiToolTip.top) + "px")//Positionnement sur les Y
      .css("left",(posiToolTip.left) + "px")//Positionnement sur les X
      .css("width",(btnLenght) + "px")//Longueur du Boutton

    jQuery('.cirqueClubPopUp')
      .css("top",(posiToolTip.top - posiY) + "px")//Positionnement sur les Y
      .css("left",(posiToolTip.left - posiX + btnLenght) + "px")//Positionnement sur les X
    jQuery(".cirqueClubCloser").click(function() {
      jQuery('.cirqueClubPopUpBtn').fadeOut("fast");
      jQuery('.cirqueClubPopUp').fadeOut("fast");
    });
  }
  /* CLUB POPUP ON RESIZE */ 

  /* LOGO POPUP ON RESIZE */   
  if(document.getElementById('ccPopUpBtn') != null) {
    var posiX = jQuery('.logoPopUp').width();
    var posiY = 0;
    var posiToolTip = jQuery('div.logoButton').offset();
    var btnLenght = jQuery('div.logoButton').width();

    jQuery('.logoPopUp')
      .css("top",(posiToolTip.top - posiY) + "px")//Positionnement sur les Y
      .css("left",(posiToolTip.left - posiX + btnLenght) + "px")//Positionnement sur les X
    jQuery(".logoCloser").click(function(){});
  }
  /* LOGO POPUP ON RESIZE */ 
}