/**************************** Função para abrir as divs ****************************/
function abreFechaText(nomeText){
	if(document.getElementById(nomeText).style.display == ""){
		document.getElementById(nomeText).style.display = "none";
	}else{
		document.getElementById(nomeText).style.display = "";
	}
}


/**************************** Função para redirecionar páginas ****************************/
function direciona_automotive(){
	url = document.getElementById('automotive').value;
	location.href = url;
}

function direciona_fluid_power(){
	url = document.getElementById('fluid_power').value;
	window.location = url;
}

function direciona_electrical(){
	url = document.getElementById('electrical').value;
	window.location = url;
}




function monta_prod(nome_div){
	Divs = new Array(4);
	Divs[0] = "div_produto";
	Divs[1] = "div_automotive";
	Divs[2] = "div_fluid_power";
	Divs[3] = "div_electrical";

	for (i=0;i<=3;i++){
		if(Divs[i] == nome_div){
			document.getElementById(Divs[i]).style.display = "";
		}else{
			document.getElementById(Divs[i]).style.display = "none";
		}
	}
}

/**************************** Função para abri janela maximixada ****************************/
function abreJanela(url) {
	window.open(url, '_blank', 'top=0, left=0, width='+screen.width+', height='+screen.height);
	void(0);
}