function category(selectobjID){
var selectobj=document.getElementById? document.getElementById(selectobjID) : ""
if (selectobj!="" && selectobj.options[selectobj.selectedIndex].value!="")
location.href=selectobj.options[selectobj.selectedIndex].value
}
