﻿//<!--
// JScript File

/*
=============================================
Variaveis de posicao e velocidade das camadas
=============================================
*/

var pos = 19;
var pos2 = 135;

/*
	function movimentaInformativo() {
	
	    var velocidade = 1;
		var intTimeOut = 50;
	    pos -= velocidade;
		
		if (pos < -100) pos = 20;
		if (pos == -3 || pos == -38 || pos == -73) intTimeOut=6000;
		
	    document.getElementById("dentroInformativo").style.top=pos;
	    window.setTimeout("movimentaInformativo();",intTimeOut);
		    
	}
	
*/
	
	function mudaMenuGDF(targ,selObj,restore) {
	
		eval("window.open('"+selObj.options[selObj.selectedIndex].value+"','"+targ+"');");
		if (restore) selObj.selectedIndex=0;
	  
	}

	function mudaCorFundo(obj,param) {
	
		if (param==1) obj.style.backgroundColor='#FFFF33';
		else obj.style.backgroundColor='#DAEABD';
	
	}
	
//-->