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

