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