function mostraTR(pValor)
{
	with(document.frmIntersaude)
		{
			if(pValor == "1" )
			{
				linha1.style.display = "block"
				linha2.style.display = "none"
				linha3.style.display = "none"
				linha4.style.display = "none"
				linha5.style.display = "none"
			}			
			else if(pValor == "2" )
			{
				linha1.style.display = "none"
				linha2.style.display = "block"
				linha3.style.display = "none"
				linha4.style.display = "none"
				linha5.style.display = "none"
			}
			else if(pValor == "3")
			{
				linha1.style.display = "none"
				linha2.style.display = "none"
				linha3.style.display = "block"
				linha4.style.display = "none"
				linha5.style.display = "none"
			}
			else if(pValor == "4" )
			{
				linha1.style.display = "none"
				linha2.style.display = "none"
				linha3.style.display = "none"
				linha4.style.display = "block"
				linha5.style.display = "none"
			}
			else if(pValor == "5" )
			{
				linha1.style.display = "none"
				linha2.style.display = "none"
				linha3.style.display = "none"
				linha4.style.display = "none"
				linha5.style.display = "block"
			}				
		}
}