var resultURL = "results1.html";  // URL of page that loads the results

function find(find_form) {
	if (find_form.terms.value.length > 0) {
		document.cookie = "z=" + escape(find_form.terms.value);
		window.location = resultURL;
	}
}