function quickSearch(actionUrl) { var action=actionUrl; var categories = document.getElementById('quickSearch.categoryKeyID'); if( categories.selectedIndex > 0 ) { action += "&searchParams.webCategoryKey=" + categories.options[categories.selectedIndex].value; } var keywords = document.getElementById('quickSearch.keywordsID').value; if( keywords != '' ) { action += "&searchParams.keywords=" + keywords; } action += "&searchParams.size=10"; GO_HREF(action + "#resultBody"); } function emptyTextBox(textBox){ if (textBox != null) textBox.value=""; }