// Confectionary Javascript

function toggle(id, newValue) {
	if (document.getElementById(id)) document.getElementById(id).style.display=newValue;
}