<!--
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(blnOk) {    
    for(i=1;i<=2;i++) {
      with(document.getElementById("ssmenu"+i).style) {
        position="absolute";
        top="200px";
        left=(((i-1)*140)+190)+"px";
        width="230px";
		margin="0";
		padding="0";
        zIndex="100";
		display = 'block';
      }
    }
    CacherMenus();
  }
}

function MontrerMenu(strMenu) {
  if(blnOk) {
    CacherMenus();  
    document.getElementById(strMenu).style.visibility="visible";
  }
}

function CacherMenus() {
  if(blnOk) {
    for(i=1;i<=2;i++) {
      with(document.getElementById("ssmenu"+i).style) {
        visibility="hidden";
      }
    }
  }
}
-->