﻿
function toggleChild(id)
{
    var child = document.getElementById(id);

    if (child == null)
        return;

    if (child.style.display == 'none')
        child.style.display = 'block';
    else
        child.style.display = 'none';
}

