function doFindByClick() {
  var prodname = document.getElementById("prodname");

  if (prodname.value == "") {
    alert("Please enter the key word to search.");
    prodname.focus();
    exit();
  }

  document.prodfind.submit();
}
