
  function fnViewCat(CatType){
        document.ProdCat.Category.value = CatType;	          
        // Must create separate windows due to different domain. (See http://www.jibbering.com/faq/#FAQ4_19 )
        // Remove spaces for cat names like 'Can Cooler'
        document.ProdCat.target = 'win' + CatType.replace(' ','');
        document.ProdCat.submit();
    }