// JavaScript Document
function clearText(thefield){
	if (thefield.defaultValue=="Starting Address, Zip, or City & State")
		thefield.value = "";
}
function clearText2(thefield){
	if (thefield.defaultValue=="Search")
		thefield.value = "";
}
function resetText(thefield){
	if (thefield.value =='')
		thefield.value = thefield.defaultValue;
}
function findlocations()
{
  document.locationForm.submit();
}
