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


var sr = "http://www.emydon.com/micro-search-engine/results.html";


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


function search_form(mse_form) {
	if (mse_form.searchterm.value.length > 0) {
		document.cookie = "q=" + escape(mse_form.searchterm.value);
		window.location = sr;
	}
}

