//Faz a chamada para inclusão de flash se exibir a mensagem para ativação
function flash(largura, altura, arquivo) {
 document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+largura+'" height="'+altura+'" align="middle">');
 document.write('<param name="allowScriptAccess" value="sameDomain" /><param name="wmode" value="transparent" /><param name="menu" value="false" />');
 document.write('<param name="movie" value="'+arquivo+'" /><param name="quality" value="best" /><param name="bgcolor" value="#ffffff" /><embed src="'+arquivo+'" wmode="transparent" menu="false" quality="best" width="'+largura+'" height="'+altura+'" name="teste" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
 document.write('</object>');
}

/*Abrir nova janela com parâmetros (pop-up)*/
function popup(largura, altura, arquivo) {
	window.open(arquivo,"_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width="+largura+", height="+altura);
}

function aba(id) {
	if (id == 'aba-1') {
		document.getElementById('lista-1').style.display = 'block';
		document.getElementById('lista-2').style.display = 'none';
		document.getElementById('lista-3').style.display = 'none';

		document.getElementById('aba-1').style.background = '#EAF1C5';
		document.getElementById('aba-2').style.background = '#EBEFDE';
		document.getElementById('aba-3').style.background = '#EBEFDE';
		
		document.getElementById('aba-1').style.borderTop = '1px solid #D5E38C';
		document.getElementById('aba-1').style.borderLeft = '1px solid #D5E38C';
		document.getElementById('aba-1').style.borderRight = '1px solid #D5E38C';
		document.getElementById('aba-2').style.borderTop = '1px solid #fff';
		document.getElementById('aba-2').style.borderLeft = 'none';
		document.getElementById('aba-2').style.borderRight = '1px solid #fff';
		document.getElementById('aba-3').style.borderTop = '1px solid #fff';
		document.getElementById('aba-3').style.borderLeft = 'none';
		document.getElementById('aba-3').style.borderRight = 'none';
	}
	if (id == 'aba-2') {
		document.getElementById('lista-1').style.display = 'none';
		document.getElementById('lista-2').style.display = 'block';
		document.getElementById('lista-3').style.display = 'none';
		
		document.getElementById('aba-1').style.background = '#EBEFDE';
		document.getElementById('aba-2').style.background = '#EAF1C5';
		document.getElementById('aba-3').style.background = '#EBEFDE';

		document.getElementById('aba-1').style.borderTop = '1px solid #fff';
		document.getElementById('aba-1').style.borderLeft = 'none';
		document.getElementById('aba-1').style.borderRight = 'none';
		document.getElementById('aba-2').style.borderTop = '1px solid #D5E38C';
		document.getElementById('aba-2').style.borderLeft = '1px solid #D5E38C';
		document.getElementById('aba-2').style.borderRight = '1px solid #D5E38C';
		document.getElementById('aba-3').style.borderTop = '1px solid #fff';
		document.getElementById('aba-3').style.borderLeft = 'none';
		document.getElementById('aba-3').style.borderRight = 'none';
	}
	if (id == 'aba-3') {
		document.getElementById('lista-1').style.display = 'none';
		document.getElementById('lista-2').style.display = 'none';
		document.getElementById('lista-3').style.display = 'block';
		
		document.getElementById('aba-1').style.background = '#EBEFDE';
		document.getElementById('aba-2').style.background = '#EBEFDE';
		document.getElementById('aba-3').style.background = '#EAF1C5';

		document.getElementById('aba-1').style.borderTop = '1px solid #fff';
		document.getElementById('aba-1').style.borderLeft = 'none';
		document.getElementById('aba-1').style.borderRight = '1px solid #fff';
		document.getElementById('aba-2').style.borderTop = '1px solid #fff';
		document.getElementById('aba-2').style.borderLeft = 'none';
		document.getElementById('aba-2').style.borderRight = 'none';
		document.getElementById('aba-3').style.borderTop = '1px solid #D5E38C';
		document.getElementById('aba-3').style.borderLeft = '1px solid #D5E38C';
		document.getElementById('aba-3').style.borderRight = '1px solid #D5E38C';
	}
	
}

function ib(id) {
  document.getElementById('ib1').style.display = 'none'
  document.getElementById('ib2').style.display = 'none'
  document.getElementById('ib3').style.display = 'none'
  document.getElementById(''+id+'').style.display = 'block'
}
