/* 
JS document
--------------------------------
@autor: Joao Paulo Fechine Sette
@email: fechine@gmail.com
@copyright: Mais Credito
--------------------------------
*/

	function start(parametro){
		//resize();
		marcaMenu(parametro);
		}
	
	function resize(){
		
		var teste = (document.getElementById('dados'));
		
		if (teste){
			var altura = (document.getElementById('dados').clientHeight);
			document.getElementById('botoes').style.height=(altura + 120 + 'px');
			/**/var teste1 = ( document.getElementById('botoes').style.height );
			}
		}
	
	function marcaMenu(parametro){
		document.getElementById(parametro).style.backgroundPosition='top left';
		document.getElementById(parametro).style.color='#fff';
		}
	
	function ativarArvore(parametro){
		if((document.getElementById(parametro).style.display) == 'block')
		{
		document.getElementById(parametro).style.display='none';
		} else {document.getElementById(parametro).style.display='block';}
		}
	
	function passaValor(parametro,identificador){
		var conteudo = document.getElementById(identificador).innerHTML;
		document.getElementById("nome").value=conteudo;
		ativarArvore("cmp-pesquisacliente");
		}