function toggle_show(id){document.getElementById(id).style.display = document.getElementById(id).style.display == 'none' ? 'block' : 'none';}

