function mudaLabel(nomeLabel,texto)
{
	var label = document.getElementById(nomeLabel);
	label.innerText = texto;
	return false;
}
