function celulaOn(object) {
	document.getElementById(object).style.backgroundColor='#D30A3D';
}
	
function celulaOff(object) {
	document.getElementById(object).style.backgroundColor='#f6f3f0';
}

function destOn(object) {
	document.getElementById(object).style.backgroundColor='#B10833';
}
	
function destOff(object) {
	document.getElementById(object).style.backgroundColor='Transparent';
}

function lblOn(object) {
	return true;
	document.getElementById(object).style.fontWeight='bolder';
}
	
function lblOff(object) {
	return true;
	document.getElementById(object).style.fontWeight='normal';
}



