// This are the functions for the search form in the header
function noShow()
{
	var x=document.getElementById("drinkNameSearch");
	x.style.background = "#FFFFFF";
}

function show()
{
	var x=document.getElementById("drinkNameSearch");
	if( x.value == "" )
	{
	    x.style.background = "#FFFFFF url(http://www.goodcocktails.com/images/drink_search.gif) no-repeat";
	}	
}

function noSearch( myForm )
{
    // This is going to check that you typed a drink name to search
	  if( myForm.drinkName.value == "" )
	  {
		    alert( "Please Enter a Drink Name!" );
		    myForm.drinkName.focus();
		    myForm.drinkName.select();
		    return false;
	  }
}