	function rn(tableCellRef, hoverFlag){
		if ( hoverFlag ) {
			tableCellRef.style.backgroundColor = '#F1E6CE';
			tableCellRef.style.border = '1px solid #014032';
//			tableCellRef.style.borderBottom: '1px solid #014032';
		} else {
			tableCellRef.style.backgroundColor = '#014032';
		}
	}