function beforeMsgSearch(form)
{
if (form.fp.value=='')
	{
	alert('Please enter page number or search terms');
	return false;
	}
var t=form.fp.value.substring(0,1);
if ((t>='0')&&(t<='9'))
	return true;
form.action='find.php';
return true;
}