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