<!--
function siteSearch() {

  // If it's a keyword search, make it Keywords; if not, remove that html field
	if (document.keywordsearch.searchType[0].checked) {
		document.keywordsearch.mInfoSourceFlag.value = "Keywords";
  }
  else {
		document.keywordsearch.mInfoSourceFlag.value = "All";  	
  }
	
}
-->