
// ---------- script properties ----------


var results_location = "authors.html";


// ---------- end of script properties ----------


function search_authors(SB_Form) {
	if (SB_Form.x.value.length > 0) {
		document.cookie = "x=" + escape(SB_Form.x.value);
		window.location = results_location;
	}
}

