function trabalhaRelatorio( id )
{
	var elemento = document.getElementById(id);
	if ( elemento.style.display == 'none' )
		elemento.style.display = '';
	else
		elemento.style.display = 'none';
}

function mudarCor (indiceRelatorio_id)
{
	var indiceRelatorio = document.getElementById(indiceRelatorio_id);

	indiceRelatorio.style.backgroundColor = '#ffecae';
}



function voltarCor (indiceRelatorio_id)
{
	var indiceRelatorio = document.getElementById(indiceRelatorio_id);

	indiceRelatorio.style.backgroundColor = '';
}
