//Validate the Search Form in the RightNav
function ValidateSearchForm()
{
	if(document.SearchForm.Query.value == "")
	{
		alert("Please enter some Search Criteria.");
		document.SearchForm.Query.focus();
		return false;
	}
	return true;
}