
function ChkObrigatorio2(c, t) {
	l = c.value.length
	
	if (l < 1) {
		alert('O campo - ' + t + ' - é de preenchimento obrigatório!')
		c.focus()
		return false
	}
	return true
}


function ValidaForm(pesquisa){
	//texto
	if (!ChkObrigatorio2(pesquisa.pesquisa, 'Pesquisa')) {return false}
	
return true
}