function MostraCampos(tp)
{
	if (tp == 1) document.all('varCENTRAL').value = '';
	
	if (document.all('varTIPO').value == 'CentralCNL')
		{
		document.all('TRvarUF').style.display = 'none';
		document.all('TRvarPERIODO').style.display = 'none';
		
		document.all('TRvarCENTRAL').style.display = '';
		
		if (document.all('varCENTRAL').value == 'F')
			{
			document.all('TRvarUF').style.display = '';
			}
		}
	else
		if (document.all('varTIPO').value == 'LocalidadeCNL')
			{
			document.all('TRvarCENTRAL').style.display = 'none';
			
			document.all('TRvarUF').style.display = '';
			document.all('TRvarPERIODO').style.display = '';
			}
		else
			{
			document.all('TRvarCENTRAL').style.display = 'none';
			document.all('TRvarUF').style.display = 'none';
			document.all('TRvarPERIODO').style.display = 'none';
			}
}
function mostraMsg(msg,i)
{
	if (msg !='')
		{
		document.all('ajuda',i).innerHTML = msg;
		}
}

function entrarParametros()
{
	document.frmPrincipal.acao.value = "p";
	document.frmPrincipal.submit();
    return true;
}

function Voltar()
{
	history.back(-1);
}

function Selecionado()
{
	if((document.frmPrincipal.varTIPO.value == 'CentralCNL') && (document.frmPrincipal.varCENTRAL.value == ''))
		{
		alert("Informe o campo: TIPO CENTRAL");
		document.frmPrincipal.varCENTRAL.focus();
		return (false);
		}

	if(((document.frmPrincipal.varTIPO.value == 'LocalidadeCNL') && (document.frmPrincipal.varUF.value == '') && (document.frmPrincipal.varPERIODO.value == '')) ||
	   ((document.frmPrincipal.varTIPO.value == 'CentralCNL') && (document.frmPrincipal.varUF.value == '') && (document.frmPrincipal.varPERIODO.value == '') && (document.frmPrincipal.varCENTRAL.value == 'F')))
		{
		alert("Informe Pelo Menos um dos Campos: SIGLA UF ou PERÍODO ATUALIZAÇÃO");
		document.frmPrincipal.varUF.focus();
		return (false);
		}

	document.frmPrincipal.acao.value = "c";
	document.frmPrincipal.submit();
	return true;
}

