var blnOk=true;
var nbMenus=20;

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) {
  }
  else{
  blnOk=false;
  }

  if(blnOk) {

    for(i=1;i<=nbMenus;i++) {
    	try{
	      with(document.getElementById("menu"+i).style) {
	        zIndex="2";
	      }
    	}
    	catch(error){
    		
    	}
    }
    for(i=1;i<=nbMenus;i++) {
    	try{
	      with(document.getElementById("ssmenu"+i).style) {
	        position="absolute";
	        padding="0";
	        zIndex="3";
	      }
      }
    	catch(error){
    		
    	}
    }    
    CacherMenus();
  }
}

function MontrerMenu(strMenu) {
  if(blnOk) {
    CacherMenus();  
    document.getElementById(strMenu).style.visibility="visible";
  }
}

function CacherMenus() {
  if(blnOk) {
    for(i=1;i<=nbMenus;i++) {
      with(document.getElementById("ssmenu"+i).style) {
        visibility="hidden";
      }
    }
  }
}