<!-- 

// Simple JS validation routine to work around the weaknesses within the builtin
// validation available with CFINPUT - aln May 2002

function rhp_validate_index_search(form) {
  var section = form.sect.value;
  var searchstring= form.search.value;

  if ((!section || (section == 'NULL')) && (!searchstring)) {
    alert("Please either enter a search phrase or choose a section.");
    return false;
  }

  // If we get here, all validation succeeded and the form can be submitted
  return true;
}

-->
