// JavaScript Document

function checkform ()
{
  // ** START keystrokes input validation**
 if(SearchForms.BusinessName.value==''&&SearchForms.Address.value==''&&SearchForms.Keyword.value==''&&SearchForms.CategoryList.value==''&&SearchForms.Neighbourhood.value=='')
 	{var whereto=confirm("You did not enter any search criteria, would you like to browse by category?");
		if(whereto == true) 
	 		window.location="category.php";
	 	else
	 		window.location="index.php";
	return false;
 	}
 
 else {//document.SearchForms.submit();
 return true;}
}
//-->

