Forum Search - gives "need 3 letters" on 3-letter
This is obviously being returned from submission later on; the Form1_Validator in the same page does this test:
<pre><font size=1 face=Courier>
if (theForm.search.value.length < 3)
{
alert("You need to type at least 3 letters."
theForm.search.focus();
return (false);
}
</font></pre>
If it isn't something that can be changed on the server, I suggest that the page check script be changed to check for 4 characters - that way it never does get back to the server or cause the forum search page to flip.