// JavaScript Search
function Validate(theForm) {
if (theForm.input.value == "") {
alert("Please enter a single or multiple keywords to search.");
theForm.input.focus();
return false; }
return true; }