function fncValidarFormBusca(form)
{ 
	var p = new Array;
  	if (form.pStrBusca.value.indexOf("%",0) == -1)
  	{
 		switch (GenJsValidateText(p, form.pStrBusca.value, 3, 100, 1, 1, 3, 3))
   		{	
			case  0: form.pStrBusca.value = p;
					break;
			case -200:
			case -201: 
				alert ('Campo Busca não pode conter caracteres ' + "'" + ', ".');
				form.pStrBusca.focus();
			   	return false; 
  			case -202: 
				alert('Campo Busca deve ter no mínimo 3 caracteres.');
				form.pStrBusca.focus();
			   	return false; 
  			case -203: 
				alert('Campo Busca deve ter no máximo 100 caracteres.\n\n');
				form.pStrBusca.focus();
				return false; 
    		default:  
				alert('Erro interno.\n\n');
				form.pStrBusca.focus();
				return false;
		}
		var pStrLower = form.pStrBusca.value.toLowerCase()
		
		// Lista de palavras com mais de quarto caracteres que o full text não permite para a busca - Bruna Duarte 02/08/2005.
		if	(
			(pStrLower =="after") || (pStrLower =="also") || (pStrLower =="because") || 
			(pStrLower =="about") ||	(pStrLower =="another") || (pStrLower =="been") || 
			(pStrLower =="before") || (pStrLower =="being") || (pStrLower =="between") ||
			(pStrLower =="both") || 	(pStrLower =="came") || (pStrLower =="come") || 
			(pStrLower =="could") ||	(pStrLower =="each") || (pStrLower =="from") || 
			(pStrLower =="have") || (pStrLower =="here") || (pStrLower =="himself") || 
			(pStrLower =="into") || (pStrLower =="like") || (pStrLower =="make") || 
			(pStrLower =="many") || (pStrLower =="might") || (pStrLower =="more") || 
			(pStrLower =="most") || (pStrLower =="must")  || (pStrLower =="much")  ||
			(pStrLower =="never") || (pStrLower =="only")  || (pStrLower =="other")  ||
			(pStrLower =="over") || (pStrLower =="said")  || (pStrLower =="same")  ||
			(pStrLower =="should") || (pStrLower =="since")  || (pStrLower =="still")  ||
			(pStrLower =="such") || (pStrLower =="take")  || (pStrLower =="than")  ||
			(pStrLower =="that") || (pStrLower =="their")  || (pStrLower =="then")  ||
			(pStrLower =="them") || (pStrLower =="these")  || (pStrLower =="they")  ||
			(pStrLower =="there") || (pStrLower =="this")  || (pStrLower =="those")  ||
			(pStrLower =="through") || (pStrLower =="under")  || (pStrLower =="very")  ||
			(pStrLower =="well") || (pStrLower =="what")  || (pStrLower =="were")  ||
			(pStrLower =="which") || (pStrLower =="while")  || (pStrLower =="with")  ||
			(pStrLower =="would") || (pStrLower =="your") || (pStrLower == "where")
			)
		{
				alert('Palavra Inválida.\n\n');
				form.pStrBusca.focus();
				return false;
		}
	   
	   return true;
   	}
  	else
  	{ 
  		alert('Caracter Inválido');
		return false;
	}
}