// Procédures globales du projet
function Set_backgroundImage(pAlias,pUrl,pRepeat,pPosition)
{
var oCel=document.getElementById(pAlias);
oCel.style.backgroundImage='url("'+pUrl+'")';
oCel.style.backgroundRepeat=pRepeat;
oCel.style.backgroundPosition=pPosition;
}

function Set_borderColor(pAlias,pColor)
{
var oCel=document.getElementById(pAlias);
oCel.style.borderColor=pColor;
}

function Set_zIndex(pAlias,pzIndex)
{
var oCel=document.getElementById(pAlias);
oCel.style.zIndex=pzIndex;
}

function Set_backgroundColor(pAlias,pColor)
{
var oCel=document.getElementById(pAlias);
oCel.style.backgroundColor=pColor;
}

function ExpandStTreeMenu(pMenu,pInd)
{
stExpandSubTree(pMenu,pInd,0);
return false;
}

function CollapseStTreeMenu(pMenu,pInd)
{
stCollapseSubTree(pMenu,pInd,0);
return false;
}


