//
// Validates the form:
//
function ValidateSearchForm(form) {
	if (IsBlank(form.search.value) || (form.search.value == 'Search for a cleat...')) {
		alert("Please enter a value.");
		form.search.focus();
		return false;
	}
	return true;
}

//
//	Clears the default text from the search box when the field is clicked, but leaves any other text as is,
//	in case the user wants to amend a current search keyword:
//
function ClickSearch(field) {
	if (field.value == 'Search for a cleat...') {
		field.value='';
	}
}