//---------------------Sélection menu CSS-------------------
function SelectMenu(IdCell) {
 if((IdCell!='')&&(document.getElementById(IdCell)!=null)){
  document.getElementById(IdCell).className="SelectMenu";
 }
}

//---------------------Sélection menuAdmin CSS-------------------
function SelectionMenuAdmin(IdCell) {
 if((IdCell!='')&&(document.getElementById(IdCell)!=null)){
  document.getElementById(IdCell).className="SelectMenuAdmin";
 }
}
function SelectSousMenuAdmin(IdCell) {
 if((IdCell!='')&&(document.getElementById(IdCell)!=null)){
  document.getElementById(IdCell).className="SelectSousMenuAdmin";
 }
}
//---------------------Sélection menuDynamiqur CSS-------------------
function SelectionMenuDyn(IdCell) {
 if((IdCell!='')&&(document.getElementById(IdCell)!=null)){
  document.getElementById(IdCell).className="SelectMenuDyn";
 }
}
//---------------------Sélection menuHaut CSS-------------------
function SelectMenu2(IdCell) {
 if((IdCell!='')&&(document.getElementById(IdCell)!=null)){
  document.getElementById(IdCell).className="SelectMenu2";
 }
}

//---------------------changer la propriete-------------------

function MM_changeProp(objId,x,theProp,theValue) { //v9.0
  var obj = null; with (document){ if (getElementById)
  obj = getElementById(objId); }
  if (obj){
    if (theValue == true || theValue == false)
      eval("obj.style."+theProp+"="+theValue);
    else eval("obj.style."+theProp+"='"+theValue+"'");
  }
}

