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; } }