//******************************************************************
//*Function verify
//*This function checks to see if fields are filled out properly.
//*Imports: form name
//*Exports: returns true if the form is filled out properly,
//* false otherwise.
//******************************************************************/
function verify(search){

//checks to see if Keyword is filled out.
if(search.keyword.value==""){
alert("Please enter a keyword.");
search.keyword.focus();
return false;
}

else return true;
}

// This function sets the focus so the user can input easily.
function set_focus(){
search.keyword.focus();
}

Can anyone see the problem?