function showColor(color) {
	document.getElementById(color).style.display = "block";
}

function hideColor(color) {
	document.getElementById(color).style.display = "none";
}
