function nav() {
   var w = document.filter.selectah.selectedIndex;
   var opt = document.filter.selectah.options[w].value;
   if (opt==0){
	   window.location.href = "index.php";
   }else{
	   window.location.href = "index.php?filter=" + opt;
   }
}
   