////////////////////////////////////////////////////////////////////////////////////////////////////
// * //////////                        - 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 initTailleCalquePresentationNul()
  {
  if(document.getElementById("calquePresentation"))
    {
    document.getElementById("cellulePresentation").style.width="100%";
    document.getElementById("calquePresentation").style.width="100%";
    }
  }

function initTailleCalquePresentation()
  {
  if(document.getElementById("calquePresentation"))
    {
    document.getElementById("calquePresentation").style.width=document.getElementById("tableauPresentation").offsetWidth+5;
    document.getElementById("tableauPresentation").style.height=hauteurFenetre-15;
    document.getElementById("calquePresentation").style.height=hauteurFenetre-15;
    document.getElementById("cellulePresentation").style.width=document.getElementById("calquePresentation").style.width;
    }
  }