<!--


	var ns4 = (document.layers) ? true : false;
	var ie4 = (document.all) ? true : false;
	var ns6 = (document.getElementById&&!document.all) ? true:false;

	var bln_Mover


//-------------------------------------------------------
	function Fun_Inicializar() {
		if (ns4) {obj1=document.Empresa;}
		if (ie4) {obj1=Empresa.style}
		if (ns6) 
		{
			var ns61=document.getElementById('Empresa');
			obj1=ns61.style
		}

		bln_Mover = false

	}

//-------------------------------------------------------
	function Fun_MoverTexto_Abaixo() {

		var posicao = parseInt(obj1.top);

		if ((posicao < 30) && bln_Mover){
			posicao = parseInt(obj1.top) + 4
			obj1.top = posicao

			setTimeout('Fun_MoverTexto_Abaixo()',100)

		}
	}	

//-------------------------------------------------------
	function Fun_MoverTexto_Acima() {

		var posicao = parseInt(obj1.top);

//		if ((posicao > -440) && bln_Mover){
		if ((posicao > -340) && bln_Mover){
			posicao = parseInt(obj1.top) - 4
			obj1.top = posicao

			setTimeout('Fun_MoverTexto_Acima()',100)

		}

	}	
	

//-------------------------------------------------------
	function Fun_Mover(bln_OnOff)
	{
		bln_Mover = bln_OnOff
	}

-->
