// JavaScript Document
function sub_topmenu_search(theform)
{
	var theqs = "?type=m&cs=1-3-2-7-4-5-6&t=1&i=1&d=1";
	var searchtype = theform.cboTopmenuSearch;
	switch(searchtype.value)
	{
		case "recipes":
		{
			if(theform.txtTopmenuSearch.value != "")
			{
				theqs = theqs + "&q=" + theform.txtTopmenuSearch.value;
			}
			theform.action = "recipe_search_results.php" + theqs;
			return true;
		}
		break;
		case "drinks":
		{
			if(theform.txtTopmenuSearch.value != "")
			{
				theqs = theqs + "&q=" + theform.txtTopmenuSearch.value;
			}
			theform.action = "drink_search_results.php" + theqs;
			return true;
		}
		break;
		default:
		{
			alert( "Please choose the section you'd like to search in");
      return false;
		}
	}
	
}

function subit_toplogin(theform)
{
	if(theform.txtTopmenuUsername.value == "")
	{
		alert("Please enter a username to login.");
		return false;
	}
	
	if(theform.txtTopmenuPassword.value == "")
	{
		alert("Please enter a password to login.");
		return false;
	}
	
	return true;
}
