function tablebg(objRef, state) {
	objRef.style.backgroundColor = (1 == state) ? '#1C1C1C' : '#000000';
	objRef.style.border = (1 == state) ? '1px solid #6C6C6C' : '1px solid #000000';
	objRef.style.cursor = (1 == state) ? 'hand' : 'none';
	return;
}