
	function CheckSearchForm()
	{
		if ((document.RecipeSearch.drinkname.value != "") ||
				(document.RecipeSearch.ingredient.options[document.RecipeSearch.ingredient.selectedIndex].text != "") ||
				(document.RecipeSearch.drinktype.options[document.RecipeSearch.drinktype.selectedIndex].text != ""))
			return true;
		else
		{
			alert("Please choose a search criteria");
			return false;
		}
	}
	function CheckBrowseForm()
	{
		if (document.RecipeBrowse.DrinkCat.options[document.RecipeBrowse.DrinkCat.selectedIndex].text != "") {				
			return true;
		}
		else
		{
			alert("Please choose a search criteria");
			return false;
		}
	}

