function on(th, set) {
	if (set=="off") {
		th.style.backgroundColor = "#eeeeee";
	} else {
		th.style.backgroundColor = "#ee0000";
	}
}

