// val.help_search.js
function validateFreeHelpSearch(ID) {
	var bComplete = true;
	var oForm = document.getElementById(ID);
	var sError = 'The form could not be submitted for the following reasons:\n\n';
	
	oQuery = oForm.q;
	if ( oQuery.value.length == 0 ) {
		sError += ' - You did not enter a keyword\n';
		isComplete = false;
	}
	
	sError += '\n Please correct and try again.';
	if (!bComplete) { alert(sError); }
	return bComplete;
}