function fijarAtencion(campo){
	campo.focus();
	campo.style.backgroundColor = '#ccc';
	                        
}
function desfijar(campo){
	campo.style.backgroundColor = 'white';
}