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('124','Rings'); checkCategory('112','Watches'); checkCategory('113','Buckles'); checkCategory('125','Boot Bling'); checkBrand('126','New for 2010'); checkBrand('120','Favorites from 2009'); checkBrand('121','Favorites from 2008'); checkBrand('122','Favorites from 2007'); checkBrand('123','Relative Classics');