function resize(w,h) {

	//Altera o tamanho do pop-up
	self.resizeTo(w,h);

	//Centraliza o pop-up
	var height = window.screen.height;
	var width = window.screen.width;

	var top = (height- h)/2;
	var left = (width - w)/2;

	moveTo(left, top);
	
}

function openWindows(act, w, h) {
	window.open(act,'_blank','width=' + w + ',height=' + h + ',resizable=no,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no');
}

function EC(TheTR) {

   var artigo = eval('document.all.' + 'buscaArtigos');
   var geral = eval('document.all.' + 'buscaGeral');
   var abaA = eval('document.all.' + 'abaArtigos');
   var abaG = eval('document.all.' + 'abaGeral');

	if (TheTR == '1') {
		artigo.style.display="block";
		abaA.style.display="block";

		geral.style.display="none";
		abaG.style.display="none";


	} else {
		artigo.style.display="none";
		abaA.style.display="none";

		geral.style.display="block";
		abaG.style.display="block";
	}
}