function checkSearch(theForm)
{
	if ( theForm.searchtext.value == "Type of Business or Keyword" )
	{
	    alert( "Please enter \"Type of Business or Keyword\"" );
	    return false;
	}
	return true;
}

