<!--

function toggleList(index)
{
    list = document.getElementById("list_" + index);
    span = document.getElementById("span_" + index);

    if (list.className == "hide")
    {
        list.className = "show";
        span.className = "show";
    }
    else
    {
        list.className = "hide";
        span.className = "hide";
    }
}

// -->

