var blnOk=true;

function Chargement() {

  if(document.body.style.backgroundColor!="") { blnOk=false; }
  if(document.body.style.color!="") { blnOk=false; }
  if(document.body.style.marginTop!="") { blnOk=false; }
  if(document.getElementById) {
    with(document.getElementById("texte").style) {
      if(position!="") { blnOk=false; }
      if(top!="") { blnOk=false; }
      if(left!="") { blnOk=false; }
      if(width!="") { blnOk=false; }
      if(height!="") { blnOk=false; }
      if(zIndex!="") { blnOk=false; }
      if(margin!="") { blnOk=false; }
      if(padding!="") { blnOk=false; }
      if(visibility!="") { blnOk=false; }
    }
  }
  else{
  blnOk=false;
  }

  if(blnOk) {
    for(i=1;i<=6;i++) {
      with(document.getElementById("menu"+i).style) {
        position="absolute";
        top="50px";
        left=(((i-1)*11))+"em";
        width="35em";
        height="27px";
        zIndex="2";
      }
    }
    
    for(i=1;i<=6;i++) {
      with(document.getElementById("smenu"+i).style) {
        position="absolute";
        top="77px";
        left=(((i-1)*11))+"em";
        width="13em";
        zIndex="3";
      }
    }

    
    CacherMenus();
  }
}

function MontrerMenu(strMenu) {
  if(blnOk) {
    CacherMenus();  
    document.getElementById(strMenu).style.visibility="visible";
  }
}

function CacherMenus() {
  if(blnOk) {
    for(i=1;i<=6;i++) {
      with(document.getElementById("smenu"+i).style) {
        visibility="hidden";
      }
    }
  }
}

