// ---------- script properties ----------


var results_location = "results.html";


// ---------- end of script properties ----------


function search_form(Form) {
	if (Form.d.value.length > 0) {
		document.cookie = 'd=' + escape(Form.d.value) + '; path=/';
		document.cookie = 'n=0; path=/';
		window.location = results_location;
	}
}
