<!-- Begin of String Tables -->




<!-- Portugues -->



<!-- Inicializacao -->

	StringTablePort = new Array(5);
	StringTableEsp = new Array(5);
	StringTableIng = new Array(5);






<!-- Titulos das tabelas (as azuis que tem noticias e produtos) -->

	StringTablePort[1] = "Linha de Escovas";
	StringTablePort[2] = "Novidades";
	StringTablePort[500] = "<img src='img/ico_idioma_ingles.gif'; width='13' height='10' border='0'>"	
	StringTablePort[501] = "<img src='img/ico_idioma_espanhol.gif'; width='13' height='10' border='0'>"	

<!-- ********************************************************** -->




<!-- Textos de Selecao da lingua -->

	StringTablePort[3] = "English";
	StringTablePort[4] = "Español";

<!-- ********************************************************** -->




<!-- txt produtos (lado direito superior em baixo do titulo azul) -->

	StringTablePort[5] = "Conheça a linha de escovas da Escowal.";

<!-- ********************************************************** -->




<!-- itens do menu -->

	StringTablePort[6] = "Sobre a Escowal";
	StringTablePort[7] = "Linha de Escovas";
	StringTablePort[8] = "Representantes";
	StringTablePort[9] = "Novidades";
	StringTablePort[10] = "Fale Conosco";
	StringTablePort[11] = "Pedidos On-Line";

<!-- ********************************************************** -->






					<!-- Ingles -->




<!-- Titulos das tabelas (as azuis que tem noticias e produtos) -->

	StringTableIng[1] = "Brushes Line";
	StringTableIng[2] = "News";
	StringTableIng[500] = "<img src='img/ico_idioma_port.gif'; width='13' height='10' border='0'>"	
	StringTableIng[501] = "<img src='img/ico_idioma_espanhol.gif'; width='13' height='10' border='0'>"	

<!-- ********************************************************** -->




<!-- Textos de Selecao da lingua -->

	StringTableIng[3] = "Português";
	StringTableIng[4] = "Español";

<!-- ********************************************************** -->




<!-- txt produtos (lado direito superior em baixo do titulo azul) -->

	StringTableIng[5] = "See Escowal's brushes line.";

<!-- ********************************************************** -->




<!-- itens do menu -->

	StringTableIng[6] = "About Escowal";
	StringTableIng[7] = "Brushes Line";
	StringTableIng[8] = "Manufacturers";
	StringTableIng[9] = "News";
	StringTableIng[10] = "Contact";
	StringTableIng[11] = "Pedidos On-Line";


<!-- ********************************************************** -->









					<!-- Espanhol -->


<!-- Titulos das tabelas (as azuis que tem noticias e produtos) -->

	StringTableEsp[1] = "Línea de Cepillos";
	StringTableEsp[2] = "Novedades";
	StringTableEsp[500] = "<img src='img/ico_idioma_port.gif'; width='13' height='10' border='0'>"	
	StringTableEsp[501] = "<img src='img/ico_idioma_ingles.gif'; width='13' height='10' border='0'>"	

<!-- ********************************************************** -->




<!-- Textos de selecao da lingua -->


	StringTableEsp[3] = "Português";
	StringTableEsp[4] = "English";

<!-- ********************************************************** -->




<!-- txt produtos (lado direito superior em baixo do titulo azul) -->

	StringTableEsp[5] = "Conozca la línea de cepillos de Escowal.";

<!-- ********************************************************** -->




<!-- itens do menu -->

	StringTableEsp[6] = "Sobre la Escowal";
	StringTableEsp[7] = "Línea de Cepillos";
	StringTableEsp[8] = "Representantes";
	StringTableEsp[9] = "Novedades";
	StringTableEsp[10] = "Contacto";
	StringTableEsp[11] = "Pedidos On-Line";

<!-- ********************************************************** -->










<!-- End of String Tables -->







function StringTableText (istr)
{
	switch (window.top.frames[0].global_Language)
	{
		case 1: return (StringTablePort[istr]);	break;
		case 2: return (StringTableIng[istr]);	break;
		case 3: return (StringTableEsp[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;
}

