/* JavaScript Document
** <SCRIPT SRC="AWSSearch.js" LANGUAGE="JavaScript"></SCRIPT>
**
** Author      Ver  Date     Comments
** ======      ===  ====     ========
** Peter Wild  1.0  20030911  first version - used for search page, included in template
*/

// Concatenates the hidden baseURL to the newly entered keywords, with AWS QS syntax 
// and updates the display title to show the entered keyword details
function setAWSURL()
  {
// Append the keywords to the URL
  //document.search.goURL.value = document.search.goURL.value + "&Keywords=" + document.search.keywords.value;
  // now reset the hidden Title field to include the keywords
  document.search.Title.value = document.search.Title.value + " [" + document.search.keywords.value + "]";
  // and then submit the [search] form
  document.search.submit();
  }
