	// TABLE CELL ROLLOVER EFFECT
function CellColorMouseOver(o) {
	o.style.backgroundColor='#FDD8BD';
	o.style.cursor='hand';
}
function CellColorMouseOut(o) {
	o.style.backgroundColor='';
}
// -->