  //'
  //' QUICK SEARCH: Update the quick search results, such as after a keypress, then post the AJAX request
  //'
   var QuickSearchPrompt = 'Quick Search - Type Here';
   var timer;
   function QuickSearchUpdate() {
      if (document.getElementById('QuickSearch').value != '') {
         clearTimeout(timer);
         timer=setTimeout('QuickSearchAJAX();',400);
//         document.getElementById('QuickSearchResults').innerHTML='<Div Style="position:absolute;top:40px;left:11px;width:110px;color:#6bd1c8;border:1px solid silver;background-color:white;font-size:11px;">Type&hellip; Pause&hellip; View&hellip;</Div>';
         document.getElementById('QuickSearchResults').innerHTML='<Div Style="position:absolute;top:40px;left:15px;width:110px;color:#6bd1c8;border:1px solid silver;background-color:white;font-size:11px;">Pause to preview&hellip;</Div>';
         document.getElementById('QuickSearchResults').style.visibility = 'visible';
         }
      else {
         document.getElementById('QuickSearchResults').style.visibility = 'hidden';
         document.getElementById('QuickSearchResults').innerHTML='';
         }
      }
   //'
   //' QUICK SEARCH: AJAX Submit the Quick Search request
   //'
   function QuickSearchAJAX() {
      if (document.getElementById('QuickSearch').value != '') {
   //      'Submit the AJAX request
         commonLibraryAJAXPostHTML('/QuickSearch/QuickSearchAJAX.htm', 'QuickSearchAJAX.Search=' + escape(document.getElementById('QuickSearch').value) + '&CommonSearchAJAX.Page=%System.PageName%', 'QuickSearchResults', '', true);
         }
      }

