
function validateForm()
{
	var objFV = new FormValidator("frm24");

	if (!objFV.validate("searchtxt", "B", "Please type something into the search box first.  Also, make sure you identify the correct type of search by selecting KEYWORD, AUDIO NO, or QUESTION ID from above."))
		return false;
		
	return true;
}

