// JavaScript Document
function FocusSearchBox() {
  document.InputForm.qs.focus();
}
function FocusSearchBox2() {
  document.worldcatsearch.q.focus();
}
// function to process search form
function AlertAuthorSearch() {

if (document.InputForm.ix.options[4].selected) {
    alert('When searching for works by an author,\nbe sure to enter the lastname first.\nFor example:\n\nSeuss Dr.')
  }
}

