//***********************************************************************
//efectua o submit do form de pesquisa
//***********************************************************************

function SearchSubmit( ) {
	if ( window.document.frmPesquisa.texto.value != "" ) {
		window.document.frmPesquisa.submit();
	}

	return;
}

//***********************************************************************
//efectua o submit do form de pesquisa de conteúdos
//***********************************************************************

function SearchContentSubmit( ) {
	if ( window.document.FormName.texto.value != "" ) {
		window.document.FormName.submit();
	}

	return;
}

//***********************************************************************
//efectua o submit do form de pesquisa de conteúdos das Oportunidades
//***********************************************************************

function SearchCooperacaoSubmit( ) {
	if ( ( window.document.frmCoop.pais.value != "" ) || ( window.document.frmCoop.sector.value != "" ) || ( window.document.frmCoop.referencia.value != "" ) || ( window.document.frmCoop.texto.value != "" ) ) {
		window.document.frmCoop.submit();
	}

	return;
}


//***********************************************************************
//efectua o submit do form de pesquisa da legislação
//***********************************************************************

function SearchLegislacaoSubmit( ) {
	if ( ( window.document.frmLeg.ltipo.value != 0 ) || ( window.document.frmLeg.numero.value != "" ) || ( ( window.document.frmLeg.dia_inicial.value != "" ) && ( window.document.frmLeg.mes_inicial.value != "" ) && ( window.document.frmLeg.ano_inicial.value != "" ) ) || ( ( window.document.frmLeg.dia_final.value != "" ) && ( window.document.frmLeg.mes_final.value != "" ) && ( window.document.frmLeg.ano_final.value != "" ) ) || ( window.document.frmLeg.texto.value != "" ) ) {
		window.document.frmLeg.submit();
	}

	return;
}


//***********************************************************************
//efectua o submit do form de pesquisa de conteúdos dos programas
//***********************************************************************

function SearchProgramaSubmit( bTema_in ) {
	if ( ( window.document.frmPrg.sigla.value != "" ) || ( window.document.frmPrg.titulo.value != "" ) || ( window.document.frmPrg.descricao.value != "" ) || ( window.document.frmPrg.destinatarios.value != "" ) || ( window.document.frmPrg.ambito.value != "" ) || ( ( window.document.frmPrg.dinicioDD.value != "" ) && ( window.document.frmPrg.dinicioMM.value != "" ) && ( window.document.frmPrg.dinicioYYYY.value != "" ) ) || ( ( window.document.frmPrg.dfimDD.value != "" ) && ( window.document.frmPrg.dfimMM.value != "" ) && ( window.document.frmPrg.dfimYYYY.value != "" ) ) ) {
		window.document.frmPrg.submit();
	} else {
		if ( bTema_in ) {
			if ( window.document.frmPrg.tema.value != 0 ) {
				window.document.frmPrg.submit();
			}
		}
	}

	return;
}