new function(){
	var f = document.forms.pesquisa;
	f.busca.onfocus = function(){
		if(this.value == this.defaultValue)
			this.value = '';
	}
	f.onsubmit = function(){
		for(var k, i = (k = f.busca.value.split(" ")).length; i--;)
			if(k[i].length >= 3)
				return true;
		return !!alert("A palavra deve conter no mínimo 3 caracteres.");
	}
}