//Clears/restores the text in the search box in menu bar
function otherBoxClearText(thefield)
	{
		if (thefield.value == "Please specify..."){
			thefield.value = "";
		}
	}
							
function otherBoxAddText(thefield)
	{
		if (thefield.value==""){
			thefield.value = "Please specify...";
		}
	}
