
//var results_location ="results.html";

function search_form(uoa_Form) {

	if (uoa_Form.q.value.length > 0) {
		document.cookie = "q=" + escape(uoa_Form.q.value);
		window.location = "results.html";
	}

       else{
           window.alert("Please Enter an input !!!"); 

          }

}
