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

  if(blnOk) {
    with(document.body.style) {
      backgroundColor="#000000";
      color="#FFF";
      marginTop="2.2em";
    }
      
    
    for(i=1;i<=4;i++) {
      with(document.getElementById("menu"+i).style) {
        position="absolute";
        top="3.8em";
        left=(((i-1)*9)+15)+"em";
        width="8em";
        height="1em";
        textAlign="center";
        margin="0";
        padding="0";
        zIndex="2";
      }
    }

   /* with(document.getElementById("ssmenu2").style) {
        position="absolute";
        top="1.2em";
        left=(((1)*9)+15)+"em";
        width="8em";
        margin="0";
        padding="0";
        zIndex="3";
      }*/
	  
	 for(i=1;i<=6;i++) {
     with(document.getElementById("ss"+i).style) {
        position="absolute";
        top="6em";
        left=(((i-1)*10)+2)+"em";
        width="8.8em";
		height="1em";
		textAlign="center";
        margin="0";
        padding="0";
        zIndex="3";
      }}
    
	with(document.getElementById("image").style) {
        position="absolute";
        top="0.6em";
        left=(((3.5-1)*7.5)+1)+"em";
        width="6.8em";
        margin="0";
        padding="0";
      }
    
    CacherMenus();
  }
}

function MontrerMenu(strMenu) {
  if(blnOk) {
    CacherMenus();  
  //  document.getElementById(strMenu).style.visibility="visible";
  document.getElementById("ss1").style.visibility="visible";
   document.getElementById("ss2").style.visibility="visible";
    document.getElementById("ss3").style.visibility="visible";
	 document.getElementById("ss4").style.visibility="visible";
	  document.getElementById("ss5").style.visibility="visible";
	   document.getElementById("ss6").style.visibility="visible";
  }
}

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