
// ---------- script properties ----------
var results_location = "/search/results.html";
// ---------- end of script properties ----------
function search_form(jse_Form) {
	if (jse_Form.d.value.length > 0) {		
		//document.cookie = "d=" + document.getElementById('d').value;
		window.location = results_location;
	}
}

