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('110','Necklaces'); checkCategory('108','Bracelets'); checkCategory('109','Earrings'); checkCategory('112','Watches'); checkCategory('124','Rings'); checkCategory('131','Sunglasses'); checkBrand('130','New for this Year'); checkBrand('128','Past Favorites'); checkBrand('123','Relative Classics');