<!--
function SetNodeStyle(idParent, strMode) 
{
    if (!document.getElementById) return;
    var parent = document.getElementById(idParent);
    if (strMode == "over") {
        parent.style.cursor = "pointer";
    } else if (strMode == "out") {
        parent.style.cursor = "pointer";
    }
}

function Node_Click(idChild) 
{
    if (!document.getElementById) return;
    var child = document.getElementById(idChild);
    if (child.style.display == "none") {
        child.style.display = "block";
    } else {
        child.style.display = "none";
    }
}
// -->