var blnOk=true;

function Chargement() {
  CacherMenus();

  if(document.body.style.backgroundColor!="") { blnOk=false; }
  if(document.body.style.color!="") { blnOk=false; }
  if(document.body.style.marginTop!="") { blnOk=false; }
  if(document.getElementById) {
  }
  else{
  blnOk=false;
  }

  if(blnOk) {
      
    for(i=1;i<=1;i++) {
      with(document.getElementById("menu"+i).style) {
        position="absolute";
        top="1em";
        left=(((i-1)*11)+1)+"em";
        width="10em";
        height="1.2em";
        textAlign="center";
        margin="0";
        padding="0";
        zIndex="2";
      }
    }
    
    for(i=1;i<=1;i++) {
      with(document.getElementById("ssmenu"+i).style) {
        position="absolute";
        top="2.4em";
        left=(((i-1)*11)+1)+"em";
        width="20em";
        textAlign="left";
        margin="0";
        padding="0";
        zIndex="3";
      }
    }
    CacherMenus();
  }
}

function MontrerMenu(strMenu) {
  if(blnOk) {
    CacherMenus();  
    document.getElementById(strMenu).style.visibility="visible";
  }
}

function CacherMenus() {
  if(blnOk) {
    for(i=1;i<=1;i++) {
      with(document.getElementById("ssmenu"+i).style) {
        visibility="hidden";
      }
    }
  }
}

