

//this function will submit a form using javascript
//this does not work properly on netscape 4

function newSearch() {
	var theform = document.Form1;
	var rawwords = theform.textfield.value;
	if (rawwords == '') { 
		alert('Please enter your search criteria.');
	
	} else {
		var query = escape(rawwords);

		window.location.href = 'http://www.lander.edu/search.html?x=12&y=5&q=' + query;
	}
}