// form.html takes your inquiry then post it to results.html
// you must type your keywords in s[num]
// ---------- script properties ----------


var results_location = "../SearchResult.asp";


// ---------- 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;
	}
}

