
// JavaScript Document
function barra_de_idiomas () {
	// Inclusão da Barra de Idiomas
	var topo;
	topo = document.getElementById('topo').innerHTML;
	document.getElementById('topo').innerHTML = "\
		<div id=\"barra_de_idiomas\">\
			<ul>\
				<li><a href=\"mapa-do-site.asp\">Mapa do Site</a></li>\
				<li onmouseover=\"document.getElementById('sub_idiomas').style.display = 'block'\" onmouseout=\"document.getElementById('sub_idiomas').style.display = 'none'; \" id=\"idiomas\"><a onmouseover=\"this.style.color = '#36728a'\" onmouseout=\"this.style.color = '#3c94b4'\" href=../industria/js//"/">Idiomas</a></li>\
            <li><ul id=\"sub_idiomas\" onmouseover=\"this.style.display='block'\" onmouseout=\"this.style.display='none'\" >\
            	<li><a href=\"index.asp\">Português</a></li>\
            	<li><a href=\"index_en.asp\">English</a></li>\
            	<li><a href=\"index_sp.asp\">Español</a></li>\
            	<li><a href=\"index_fr.asp\">Français</a></li>\
            </ul></li>\
			</ul>\
		</div>" + topo;		
}

function troca_topo() {
	barra_de_idiomas();
	//Configuração da Figura de fundo
	if (document.getElementById('path').innerHTML.indexOf("Mapa") != -1) {
		document.getElementById('geral').style.backgroundImage = 'url(../img/topo_a_silimed_industria.gif)';
	}
	var conteudo = document.getElementById('menu_esquerda').getElementsByTagName("ul")[0].getElementsByTagName("li")[0].innerHTML;
	if ((conteudo.indexOf("A Silimed") != -1) || (conteudo.indexOf("Infantil") != -1)) {
		document.getElementById('geral').style.backgroundImage = 'url(../img/topo_industria_mao_silicone.gif)';
	} else if (conteudo.indexOf("Comprar") != -1) {
		document.getElementById('geral').style.backgroundImage = 'url(../img/topo_a_silimed_industria.gif)';
	} else if (conteudo.indexOf("Bem-Estar") != -1) {
		document.getElementById('geral').style.backgroundImage = 'url(../img/topo_industria_silicone.gif)';
	} else if ((conteudo.indexOf("Masculina") != -1) || (conteudo.indexOf("Qualidade") != -1)) {
		document.getElementById('geral').style.backgroundImage = 'url(../img/topo_industria_homem_azul.gif)';
	} else if (conteudo.indexOf("Feminina") != -1) {
		document.getElementById('geral').style.backgroundImage = 'url(../img/topo_industria_proteses.gif)';
	} else if (conteudo.indexOf("Medgel") != -1) {
		document.getElementById('geral').style.backgroundImage = 'url(../img/topo_medgel_industria.gif)';
	} else {
		document.getElementById('geral').style.backgroundImage = 'url(../img/topo_qualidade_industria.gif)';
	}
}

function seleciona_pergunta() {
	var url = new Array();
	url = document.URL.split('#');
	for (i=0; i<document.getElementsByTagName("h3").length; i++) {
			document.getElementsByTagName("h3")[i].style.display = 'none';
	}
	mostra_resposta(url[1]);
}

function mostra_resposta(id) {
	var i;
	var qtdh2 = document.getElementsByTagName("h2").length;
	var qtdh3 = document.getElementsByTagName("h3").length;
	if (document.getElementById(id).getElementsByTagName("h3")[0].style.display == 'none') {
		for (i=0; i<document.getElementsByTagName("h2").length; i++) {
			if (document.getElementsByTagName("h2")[i].parentNode.id != 'corpo') {
				document.getElementsByTagName("h2")[i].style.color = '#656672';
			} 
		}
		for (i=0; i<document.getElementsByTagName("h3").length; i++) {
				document.getElementsByTagName("h3")[i].style.display = 'none';
		}
		document.getElementById(id).getElementsByTagName("h3")[0].style.display = 'block';
		document.getElementById(id).getElementsByTagName("h2")[0].style.color = '#ff610d';
	} else {
		document.getElementById(id).getElementsByTagName("h3")[0].style.display = 'none';
		document.getElementById(id).getElementsByTagName("h2")[0].style.color = '#656672';
	}
}

//Pop-up
function pop(newLoc, width, height) {
	var param;
	if (width <= 750) {
		param = "height = "+height+"px, width="+width+"px,	scrollbars=no, location = no, status = no, resizable = yes"; 
	} else {
		param = "height = "+height+"px, width="+width+"px, scrollbars=yes, location = no, status = no, resizable = yes"; }
	window.open(newLoc, 'Titulo', param);
}
