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