// JavaScript Document
function stAba(conteudo, botao){
	this.conteudo = conteudo;
	this.botao = botao;
}

var arAbas = new Array();
arAbas[0] = new stAba('div_informativo', 'informativo');
arAbas[1] = new stAba('div_desconto', 'desconto');
arAbas[2] = new stAba('div_kids', 'kids');
arAbas[3] = new stAba('div_album', 'album');

function AlternarAbas(conteudo, botao){

	for (i=0; i < arAbas.length; i++){
		c = document.getElementById(arAbas[i].conteudo);
		c.style.display = 'none';
		b = document.getElementById(arAbas[i].botao);
		b.src =  'imagens/abas/' + arAbas[i].botao + '.jpg';	
	}		
		c = document.getElementById(conteudo);
		c.style.display = '';
		b = document.getElementById(botao);
		b.src = 'imagens/abas/' + botao + '_sel.jpg';
}

function ExibeLayer(theTable){
 if (document.getElementById(theTable).style.display == 'none'){
	  document.getElementById(theTable).style.display = 'block';
 }else if (document.getElementById(theTable).style.display == 'block'){
	  document.getElementById(theTable).style.display = 'none'; 
 }
}

function AbreJogo(theURL, largura, altura) { //v2.0
  window.open("realkids.php?jogo=" + theURL,"RealKids","status=yes,width=" + largura + ",height=" + altura);
}

function AbreAlbum(theURL) { //v2.0
  window.open("veralbum.php?cat_nome=" + theURL,"Album","status=yes,scrollbars=yes,width=605,height=450");
}

function AbrePagina(theURL) { //v2.0
  window.open("pagina.php?modalidade=" + theURL,"Album","status=yes,scrollbars=yes,width=605,height=480");
}
