// JavaScript Document

<!-- javascript to change form method and action -->

function OnSubmitSearchForm()
{
   document.forms.searchform.action="http://www.utm.edu/search/results.php";
   if (document.searchform.searchtype[1]==true)
   {
      function inputFocus() {
        document.getElementById('query-input').style['background'] = '';
      }
 
      function inputBlur() {
        var queryInput = document.getElementById('query-input');
        if (!queryInput.value) {
          queryInput.style['background'] = 'white url(http://www.google.com/coop/images/google_custom_search_watermark.gif) no-repeat 0% 50%';
        }
      }
   } 
   if (document.forms.searchform.searchtype[document.forms.searchform.searchtype.selectedIndex].value=='people')
   {
      document.forms.searchform.search_criteria.value=document.forms.searchform.qt.value;
      document.forms.searchform.action="http://www.utm.edu/search/index.php";
      document.forms.searchform.method="POST";     
   }
   return true;
}

