$temp_string = tep_draw_input_field('detailed', TEXT_INPUT_KEYWORD, 'size="25" class="' . (tep_not_null($HTTP_GET_VARS['detailed']) && $HTTP_GET_VARS['detailed'] != TEXT_INPUT_AUTHOR ? 'author_activated' : 'author_disabled') . '" onfocus="this.className=\'author_activated\';' . (tep_not_null(TEXT_INPUT_KEYWORD) ? ' if (this.value==\'' . TEXT_INPUT_KEYWORD . '\') this.value = \'\';" onblur="if (this.value==\'\') { this.value = \'' . TEXT_INPUT_KEYWORD . '\'; this.className=\'author_disabled\'; }' : '') . '"');
     if (tep_not_null($temp_string)) {
         $filterlist_authors_string .= '<div id="AuthorsList">' . $text_customize . '<br />' . "\n" . tep_draw_form('authors', $authors_form_link, 'get', 'onsubmit="if (document.authors.author) { if (document.authors.detailed.value==\'' . TEXT_INPUT_KEYWORD . '\' || document.authors.detailed.value==\'\') { return false; } }"');
         reset($HTTP_GET_VARS);
         while (list($key, $value) = each($HTTP_GET_VARS)) {
             if (tep_not_null($value) && !in_array($key, array(tep_session_name(), 'page', 'x', 'y', 'cPath', 'author', 'authors_id', 'detailed', 'cName', 'tName'))) {
                 if ($show_product_type > 1 && $key == 'categories_id') {
                 } else {
                     $filterlist_authors_string .= tep_draw_hidden_field($key, tep_output_string_protected(urldecode($value)));
                 }
             }
         }
         $filterlist_authors_string .= $temp_string . ' ' . tep_image_submit('button_quick_search.gif', IMAGE_BUTTON_QUICK_SEARCH) . '</form></div>' . "\n";
     }
 }
 $listing_string = '	<table width="100%" id="listing-split">' . "\n" . '	  <tr>' . "\n" . '		<td>' . $listing_split->display_count(TEXT_DISPLAY_NUMBER_OF_RECORDS) . '</td>' . "\n" . '		<td align="center">' . sprintf(TEXT_DISPLAY_NUMBER_OF_RECORDS_PER_PAGE, $listing_split->display_rows_per_page($per_page)) . '</td>' . "\n" . '		<td align="right">' . TEXT_RESULT_PAGE . ' ' . $listing_split->display_links(MAX_DISPLAY_PAGE_LINKS, tep_get_all_get_params(array('page', 'info', 'x', 'y', 'sort'))) . '</td>' . "\n" . '	  </tr>' . "\n" . '	</table>' . "\n";
 if ((PREV_NEXT_BAR_LOCATION == '1' || PREV_NEXT_BAR_LOCATION == '3') && $show_listing_string == true) {
     echo $listing_string;
 }
 $rows = 0;
 $list_box_contents = array();
 $sorting_text = '';
 for ($col = 0, $n = sizeof($column_list), $sorting_text = ''; $col < $n; $col++) {
     switch ($column_list[$col]) {
         case 'PRODUCT_LIST_MODEL':
             $lc_text = TABLE_HEADING_MODEL;
             break;
         case 'PRODUCT_LIST_NAME':
             $lc_text = TABLE_HEADING_PRODUCTS;
             break;
         case 'PRODUCT_LIST_MANUFACTURER':