function toggle(id) {
	thing = document.getElementById(id);
	thing.style.display = thing.style.display == '' ? 'none' : thing.style.display;
	thing.style.display = thing.style.display == 'none' ? 'inline' : 'none';
}

