function searchclear(textbox) {
	if (textbox.value == textbox.defaultValue)
	{
		textbox.value = ""
	}
}

function restoreZip(textbox) {
if (textbox.value == "")
	{
		textbox.value = "Enter Zip Code"
	}	
}

function restoreSearch(textbox) {
if (textbox.value == "")
	{
		textbox.value = "Enter search term"
	}	
}