function togglesection(id)
{
        // Check if element is not hidden
        if (document.getElementById('section_' + id).style.display != 'none')
        {
                // Hide element and save status
                document.getElementById('section_' + id).style.display = 'none';
        }
        else
        {
                // Show element and save status
                document.getElementById('section_' + id).style.display = 'inline';
        }
}

