function checkCategory(iID, strCategory) { objElement = document.getElementById(iID) if (objElement) { objElement.href = 'results.asp?Category=' + strCategory; } } function checkSubcategory(iID, strCategory, strSubcategory) { objElement = document.getElementById(iID) if (objElement) { objElement.href = 'results.asp?Category=' + strCategory + '&Subcategory=' + strSubcategory; } } function checkBrand(iID, strBrand) { objElement = document.getElementById(iID) if (objElement) { objElement.href = 'results.asp?Brand=' + strBrand; } } checkCategory('108','Bracelets'); checkCategory('109','Earrings'); checkCategory('110','Necklaces'); checkCategory('112','Watches'); checkCategory('113','Belts & Buckles'); checkCategory('114','Other'); checkBrand('99','Ranchy'); checkBrand('100','Girls & Pearls'); checkBrand('101','Couture'); checkBrand('102','Retro'); checkBrand('103','Jewelry Junkie'); checkBrand('104','Punchy Cowgirl'); checkBrand('105','Glam'); checkBrand('106','Urban'); checkBrand('107','High Rollin\''); checkBrand('117','Red Hot Summer SPECIALS');