function change(obj, color){
	var tobj;
	if ((tobj = document.getElementById(obj))) {
		tobj.style.backgroundColor = color;
	}
}
