////////////////////////////////////////////////////////////////////////////////////////////////////
// * //////////                        - Site A vue de nez -                         ////////// * //
// * //////////                Ce code à été écrit par Olivier Habert                ////////// * //
// * //////////          Ne peut être reproduit sans l'accord de son auteur          ////////// * //
// * //////////                        olivier.habert@free.fr                        ////////// * //
////////////////////////////////////////////////////////////////////////////////////////////////////

function initTailleCalquePrincipalNul()
  {
  if (document.getElementById("cellulePrincipal")) document.getElementById("cellulePrincipal").style.width="100%";
  if(document.getElementById("calquePrincipal_01"))
    {
    document.getElementById("tableauPrincipal_01").style.width=""
    document.getElementById("calquePrincipal_01").style.width=""
    document.getElementById("cellulePrincipal_01").style.width=""
    document.getElementById("calquePrincipal_02").style.width="100%"
    document.getElementById("tableauPrincipal_02").style.width="100%"
    document.getElementById("tableauPrincipal_02").style.width=""
    }
  if(document.getElementById("calqueModuleExterne")) document.getElementById("calqueModuleExterne").style.width="0px";
  }

function initTailleCalquePrincipal()
  {
  if (document.getElementById("calquePrincipal"))
    {
    document.getElementById("calquePrincipal").style.height=hauteurFenetre-15;
    if(document.getElementById("cellulePrincipal_01"))
      {
      if(document.getElementById("tableauPrincipal_01").offsetHeight<document.getElementById("cellulePrincipal_01").offsetHeight && document.getElementById("tableauPrincipal_02").offsetHeight>document.getElementById("cellulePrincipal_01").offsetHeight) document.getElementById("calquePrincipal_01").style.height=document.getElementById("tableauPrincipal_02").offsetHeight;
      document.getElementById("calquePrincipal_02").style.width=document.getElementById("tableauPrincipal_02").offsetWidth;
      document.getElementById("tableauPrincipal_01").style.width=document.getElementById("cellulePrincipal_01").offsetWidth-document.getElementById("calquePrincipal_02").offsetWidth;
      document.getElementById("calquePrincipal_01").style.width=document.getElementById("tableauPrincipal_01").offsetWidth;
      if(document.getElementById("tableauPrincipal_01").offsetWidth+document.getElementById("tableauPrincipal_02").offsetWidth>document.getElementById("cellulePrincipal_01").offsetWidth)
        {
        document.getElementById("tableauPrincipal_02").style.width=document.getElementById("cellulePrincipal_01").offsetWidth-document.getElementById("calquePrincipal_01").offsetWidth-5;
        document.getElementById("calquePrincipal_02").style.width=document.getElementById("tableauPrincipal_02").offsetWidth;
        }
      document.getElementById("calquePrincipal_02").style.height=document.getElementById("tableauPrincipal_02").offsetHeight;
      if(document.getElementById("tableauPrincipal_01").offsetHeight>document.getElementById("tableauPrincipal_02").offsetHeight) document.getElementById("calquePrincipal_01").style.height=document.getElementById("tableauPrincipal_01").offsetHeight;
      else document.getElementById("calquePrincipal_01").style.height=document.getElementById("tableauPrincipal_02").offsetHeight;
      document.getElementById("calquePrincipal_02").style.left=document.getElementById("cellulePrincipal_01").offsetWidth-document.getElementById("calquePrincipal_02").offsetWidth-0;
      }
    if(document.getElementById("calqueModuleExterne"))
      {
      document.getElementById("calqueModuleExterne").innerHTML=document.getElementById("calqueModuleExterneTemp").innerHTML;
      document.getElementById("calqueModuleExterne").style.width=largeurFenetre-document.getElementById("calquePresentation").offsetWidth-10;
      }
    }
  }