<!--
function submitForm()
{
  var filterForm = document.filterForm;
  var strLocation = new String(window.location);
  var idx = -1;
   if(strLocation.lastIndexOf("detail") > 0){
     strLocation= strLocation.replace(/detail/,"list");
   }  
   if(strLocation.lastIndexOf("year") > 0){
     strLocation= strLocation.replace(/year=\d+/g,"year=" + filterForm.year.value);
   }else{
     idx = strLocation.lastIndexOf(",");
     strLocation= strLocation.substring(0, idx) + "&year=" + filterForm.year.value + strLocation.substring(idx);
   }
   if(strLocation.lastIndexOf("category") > 0){
     strLocation= strLocation.replace(/category=\d+/g,"category=" + filterForm.category.value);
   }else{
     idx = strLocation.lastIndexOf(",");
     strLocation= strLocation.substring(0, idx) + "&category=" + filterForm.category.value + strLocation.substring(idx);
   }
   if(strLocation.lastIndexOf("country") > 0){
     strLocation= strLocation.replace(/country=\d+/g,"country=" + filterForm.country.value);
   }else{
     idx = strLocation.lastIndexOf(",");
     strLocation= strLocation.substring(0, idx) + "&country=" + filterForm.country.value + strLocation.substring(idx);
   }
   filterForm.action = strLocation;
   filterForm.submit();
}
//-->
