
function CollapseMenu()
{

var objF = document.getElementById("divFonction");
objF.style.zIndex = 8;
if(isMinNS4)
{

objF = document.getElementById(activeOnglet);
if(objF!=null)
{
objF.style.display = "block";
objT = document.getElementById("divTemp");
objT.style.display = "none";
objT.innerHTML = "";
}
}

}

function ExpandMenu()
{
var objF = document.getElementById("divFonction");
objF.style.zIndex = 200;


if(isMinNS4)
{
objT = document.getElementById("divTemp");

if(activeOnglet!="")
{
if(frames[activeOnglet].document!=null)
{

objT.innerHTML = frames[activeOnglet].document.body.innerHTML;
objT.style.display = "block";
}
objF = document.getElementById("fFiltre");
objF.style.display = "none";

objF = document.getElementById("iframRes");
objF.style.display = "none";

objF = document.getElementById("fLegende");
objF.style.display = "none";
}



}

}
