// JavaScript Document

	function checkLen() {
	var reqLen;
	reqLen = new String(search_form.request.value)
		if (reqLen.length > 0) {
			//alert("Search will proceed");
			return true;
		} else {
			alert("Please enter your search term in the box.");
			return false;
		}
	}    


