
// ---------- script properties ----------


var results_location = "results.html";


// ---------- end of script properties ----------


function search_form(NCO_Form) {
	if (NCO_Form.d.value.length <= 2) {
		alert("You Must Imput at lest 3 letters.");
		return
	}
	if (NCO_Form.d.value.length >= 3) {
		document.cookie = "d=" + escape(NCO_Form.d.value);
		mytest = escape(NCO_Form.d.value)
		
		window.location = results_location;
	}
}
