function checa_classific()
{
	if (document.form.categoria.value=="")
	{
		alert('Selecionar um item para busca!');
		return false;		

	} else {	
	    document.form.nome.value  = ""; 
		document.form.mes.value = 0;
		document.form.ano.value = 0;
		document.form.letra.value = "";
		document.form.submit();		
	}
}

function checa_nome()
{

	if (document.form.nome.value=="")
	{
		alert('Selecionar um item para busca!');
		return false;		

	} else {
	    document.form.categoria.value = "";
		document.form.mes.value = 0;
		document.form.ano.value = 0;
		document.form.letra.value = "";
		document.form.submit();		
	}
}

function checa_mesano()
{

	if (document.form.mes.value==0 && document.form.ano.value==0)
	{
		alert('Selecionar um item para busca!');
		return false;		

	} else {
		document.form.submit();		
	}
}

function lista(valor)
{
	document.form.nome.value  = ""; 
	document.form.mes.value = 0;
	document.form.ano.value = 0;
	document.form.categoria.value = "";
	document.form.letra.value = valor;		
	document.form.submit();			
}

function segue()
{	
	document.dados.submit();			
}

function irpagina(valor)
{
    document.dados.paginacao.value = valor; 	
	document.dados.submit();			
}


function buscaNome()
{
	if (document.form2.nome.value=="")
	{
		alert('Selecionar um item para busca!');
		return false;		

	} else {
	    document.form2.categoria.value = "";
		document.form2.mes.value = 0;
		document.form2.ano.value = 0;
		document.form2.letra.value = "";
		document.form2.submit();		
	}
}

