//Node toggle functionality for stats display function toggleChildVisibility(node){ var x=document.getElementById(node); if(x.style.display!='none') x.style.display = 'none';else x.style.display = 'block'; }