
	function NascondiByID(IDToHide){
		document.getElementById(IDToHide).style.visibility = 'hidden';
	}
	
	function MostraByID(IDToShow){
		document.getElementById(IDToShow).style.visibility = 'visible';
	}
	
	function NascondiDisplayByID(IDToHide){
		document.getElementById(IDToHide).style.display = 'none';
	}
	
	function MostraDisplayByID(IDToShow){
		document.getElementById(IDToShow).style.display = 'inline';
	}
	
	function VisualInlineTable(IDToShow){
		document.getElementById(IDToShow).style.display = 'inline-table';
	}
	
	function VisualInlineBlock(IDToShow){
		document.getElementById(IDToShow).style.display = 'inline-block';
	}
	
	function VisualBlock(IDToShow){
		document.getElementById(IDToShow).style.display = 'block';
	}
