function tr_over(src)
{
	src.style.background = '#F1F1E4';
}

function tr_out(src)
{
	src.style.background = '#FFFFFF';
}

function mostrar(src1,src2)
{
	elemento1 =  document.getElementById(src1);
	elemento2 =  document.getElementById(src2);
	elemento1.style.display = 'block';
	elemento2.style.display = 'none';
}


function marcar(src1,src2)
{
	elemento1 =  document.getElementById(src1);
	elemento2 =  document.getElementById(src2);
	elemento1.className = 'marcado';
	elemento2.className = 'nomarcado';
}

