function cellOn(td, color) {
	if(document.getElementById || (document.all && !(document.getElementById))) {
		td.style.backgroundColor= color;
	}
}

function cellOut(td) {
	if(document.getElementById || (document.all && !(document.getElementById))) {
		td.style.backgroundColor="#FFFFFF";
	}
}
