<!-- Begin of String Tables -->




<!-- Portugues -->



<!-- Inicializacao -->

	StringTablePortLayer = new Array(5);
	StringTableEspLayer = new Array(5);
	StringTableIngLayer = new Array(5);






<!-- Menu layer portugues -->

	StringTablePortLayer[1] = "Produto 1";
	StringTablePortLayer[2] = "Produto 2";
	StringTablePortLayer[3] = "Produto 3";
	


					<!-- Ingles -->




<!-- menu layer ingles -->


	StringTableIngLayer[1] = "Product 1";
	StringTableIngLayer[2] = "Product 2";
	StringTableIngLayer[3] = "Product 3";

<!-- ********************************************************** -->













					<!-- Espanhol -->


<!-- Titulos das tabelas (as azuis que tem noticias e produtos) -->


	StringTableEspLayer[1] = "Producto 1";
	StringTableEspLayer[2] = "Producto 2";
	StringTableEspLayer[3] = "Producto 3";
	
	
<!-- ********************************************************** -->



<!-- End of String Tables -->







function StringTableTextLayer (istr)
{
	switch (window.top.frames[0].global_Language)
	{
		case 1: return (StringTablePortLayer[istr]);	break;
		case 2: return (StringTableIngLayer[istr]);	break;
		case 3: return (StringTableEspLayer[istr]);	break;

		default:
			return ("Erro ao carregar o site.")
		break;
	}

}
function trocaidioma1()
{
	if (window.top.frames[0].global_Language == 1)
		window.top.frames[0].global_Language = 2;
	else if (window.top.frames[0].global_Language == 3)
		window.top.frames[0].global_Language = 1;
			else if (window.top.frames[0].global_Language == 2)
		window.top.frames[0].global_Language = 1;
	var idioma=window.top.frames[0].global_Language;
	window.location="conteudo.asp?codidioma="+idioma;
	
}

function trocaidioma2()
{
	if (window.top.frames[0].global_Language == 1)
		window.top.frames[0].global_Language = 3;
	else if (window.top.frames[0].global_Language == 2)
		window.top.frames[0].global_Language = 3;
			else if (window.top.frames[0].global_Language == 3)
		window.top.frames[0].global_Language = 2;

	var idioma=window.top.frames[0].global_Language;
	window.location="conteudo.asp?codidioma="+idioma;
}

