
// ---------- script variables ----------


var results_location = "search.htm";


// ---------- end of script variables ----------


function search_form(search_Form) {
	if (search_Form.d.value.length > 0) {
		document.cookie = "d=" + escape(search_Form.d.value);
		window.location = results_location;
	}
}

