// Cambiar color de fondo de la fila.

function selectedRow(cell){
	if(cell.parentNode.tagName=='TR'){ 
		if(cell.parentNode.style.backgroundColor==''){
			cell.parentNode.style.backgroundColor='#F5D0A9';
		} else {
			cell.parentNode.style.backgroundColor='';
		}
	} else { 
		if(cell.style.backgroundColor==''){
			cell.style.backgroundColor='#F5D0A9';
		} else {
			cell.style.backgroundColor='';
		}
	}
}