LoadSelects(null, '');

      function processForm()
      {
       F = document.forms['frmCSSB'];
       strPath = '';
       if(F.selCat.selectedIndex > 0)
       {
        if(F.selSect.selectedIndex == 0)
         strPath = F.selBrand.selectedIndex > 0 ? 'index.aspx?Command=KeywordGroupSearch&Category=' + F.selCat.value : 'SubCategories/' + F.selCat.value + '.aspx';
        else
        {
         if(F.selSubSect.selectedIndex == 0)
          strPath = 'index.aspx?Command=KeywordGroupSearch&Section=' + F.selSect.value;
         else
          strPath = 'index.aspx?Command=KeywordGroupSearch&SubSection=' + F.selSubSect.value;
        }
       }
       else if (F.selBrand.selectedIndex > 0)
        strPath = 'index.aspx?Command=KeywordGroupSearch';
       else
       {
        alert('Please Select a Category or a Vendor!');
        return false;
       }

       location = 'http://www.esafetyinc.com/' + strPath + (F.selBrand.selectedIndex > 0 ? '&Manufacturer=' + F.selBrand.value : '');
       return false;
      }