function showRow(linha) {
		document.getElementById(linha).style.display = ''
}
function hideRow(linha) {
		document.getElementById(linha).style.display = 'none'
}
