

function hideSection(id) {
document.getElementById('show'+id).style.display = 'none';
document.getElementById('hide'+id).style.display = 'block';
}

function showSection(id) {
document.getElementById('show'+id).style.display = 'block';
document.getElementById('hide'+id).style.display = 'none';
}

