function Form_Validator(theForm){

//**********************************
//* Função que chama as validações *
//**********************************

//ADICIONAR AS FUNÇÕES DAS VALIDAÇÕES NESTE ESPAÇO

	//****** CAMPO BUSCA PALAVRA ******
	// verifica se o campo está vazio
	var cont = theForm.busca.value
	if (theForm.busca.value == "")
	   {
		 var idioma = theForm.idioma.value
		 if (theForm.idioma.value == "1")
		 	{
		 	alert("Informe a palavra a ser pesquisada.");
		 	}
		 if (theForm.idioma.value == "2")
		 	{
		 	alert("Write the word to be searched.");
		 	}
		 if (theForm.idioma.value == "3")
		 	{
		 	alert("Informe la palabra que desea buscar.");
		 	}		 	
		 theForm.busca.focus();
		 theForm.busca.select();
		 return (false);
	   }

	// verifica se o campo contêm menos de 3 caracteres
	if (theForm.busca.value.length < 3)
		{
		
		 if (theForm.idioma.value == "1")
		 	{
		 	alert("A palavra a ser pesquisada deve conter no mínimo 3 caracteres.");
		 	}
		 if (theForm.idioma.value == "2")
		 	{
		 	alert("The word must have at least 3 characters.");
		 	}
		 if (theForm.idioma.value == "3")
		 	{
		 	alert("La palabra buscada debe tener como mínimo 3 caracteres.");
		 	}		 	
		theForm.busca.focus();
		theForm.busca.select();
		return (false);
		}
//-------------------------------------------------------------------------------------------	
}