// JavaScript Document
function ChangeColor(farbe, ID) {
	new_id = ID.substring(0,5);
	document.getElementById(new_id).bgColor = "#" + farbe;
}


