<!--

 function doQuickLink(strFormID) {

  if (document.getElementById(strFormID)) {

   if (document.getElementById('select-quicklinks')) {
    strCategoryURL = document.getElementById('select-quicklinks').value;
   }//if

   document.location = strCategoryURL;

  }//if

  return false;

 }//function


 function doSortForm(strFormID) {

  if (document.getElementById(strFormID)) {

   intSort = 0;
   intFilter = 0;
   intCategory = 0;
   intPage = 0;

   if (document.getElementById('select-sort')) {
    intSort = document.getElementById('select-sort').value;
   }//if

   if (document.getElementById('select-filter')) {
    intFilter = document.getElementById('select-filter').value;
   }//if

   if (document.getElementById('hidden-category-url')) {
    strCategoryURL = document.getElementById('hidden-category-url').value;
   }//if

   if (document.getElementById('hidden-category')) {
    intCategory = document.getElementById('hidden-category').value;
   }//if

   if (document.getElementById('hidden-page')) {
    intPage = document.getElementById('hidden-page').value;
   }//if

   strURL = strCategoryURL + '/' + intCategory + ',' + intSort + ',' + intFilter + ',' + intPage + '/';
   document.location = strURL;

  }//if

  return false;

 }//function

//-->
