
function go(theOne)
{
   target = theOne.options[theOne.selectedIndex].value.toString();

   if ( target == "..." )
   {
     return;
   }

   this.location = target;
   return;
}



function reloadTypes(theOne)
{
	var target = '/knives/kitchen/misc/usetype/' + theOne.options[theOne.selectedIndex].value + '/index.shtml';
   imgFlag = document.getElementById("imgFlag").checked;
   if (imgFlag == false)
   {
      target +="?ni=1";
   }

   this.location = target;
   return;
}

function typeImgSelectorClk(chkBox)
{
   var theOne = document.getElementById("usetype");
   reloadTypes(theOne);
   return;
}
