


// show or hide <DIV> block in the tree
function show_or_hide(idList)
{
        if (idList.style.display=="none") {
                idList.style.display = "block";
        } else {
                idList.style.display = "none";
        }
}

