function CellColorMouseOver(o) {
	o.style.backgroundColor='#FBF0EC';
	o.style.cursor='hand';
}
function CellColorMouseOut(o) {
	o.style.backgroundColor='';
}