function item_ts(theCell, tabColor){
	var aColor = "#fff8f0";
	var bColor = "#ffffff";
	if (tabColor == 'a') {tabColor = aColor;}
	else {tabColor = bColor;}
	theCell.style.backgroundColor = tabColor;
return true;}

