// JavaScript Document


//For the search box in the lower right corner of the home page.
//Clears out the text when a user clicks in it and if they don't enter anything
//places the text back after they click out.
function clearSearchBox(field)
{
	if(document.getElementById)
	{
		var elem = document.getElementById(field);
		elem.value = "";
	}
}

function refillTextBox(field, valueText)
{
	if(document.getElementById)
	{
		var elem = document.getElementById(field);
		if(elem.value == "" || elem.value == null)
		{	
			elem.value = valueText;
		}
	}
}