function canviInput(inp) {
	if (inp.value != '') {
		inp.style.backgroundColor = "#CDDDFD";
	} else {
		inp.style.backgroundColor = "#FFFFFF";
	}
}
function activa (inp, accio) {
	if (accio) {
		inp.style.backgroundColor = "#CDDDFD";
	} else {
		canviInput(inp);
	}
}
function haCarregat() {
	document.images['dofi'].src='../images/dofins.gif'
}
function remarcarFila(fila, activar, parell) {
	if (activar) fila.style.backgroundColor = "#C5B5D9";
	else {
		if (parell) fila.style.backgroundColor = "#F7E3EF";
		else fila.style.backgroundColor = "#FFFFFF";
	}
}
