// JScript File

function dropText(target_name, path)
{
    var target
    target = document.getElementById(target_name)
    if (target == null)
        return;
    if (target.style.visibility == 'hidden')
    {
        target.style.visibility = 'visible';
        target.style.display = 'block';
        if (path != null) document[target_name + 'Arrow'].src = path + 'dropArrowDown.gif';
    }
    else
    {
        target.style.visibility = 'hidden';
        target.style.display = 'none';
        if (path != null) document[target_name + 'Arrow'].src = path + 'dropArrowRight.gif';
    }
}