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


var results_location = "SearchResults.htm";


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


function search_form(Form1) {
	if (Form1.d.value.length > 0) {
		document.cookie = "d=" + escape(Form1.d.value);
		window.location = results_location;
	}
}
