// JavaScript Document
	function changeColor(color, ID) {
		document.getElementById(ID).bgColor = "#" + color;
	}

