Hi, thanks already!!

PHP Code:
<?php
//
// +----------------------------------------------------------------------+
// |zen-cart Open Source E-commerce                                       |
// +----------------------------------------------------------------------+
// | Copyright (c) 2003 The zen-cart developers                           |
// |                                                                      |
// | http://www.zen-cart.com/index.php                                    |
// |                                                                      |
// | Portions Copyright (c) 2003 osCommerce                               |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.0 of the GPL license,       |
// | that is bundled with this package in the file LICENSE, and is        |
// | available through the world-wide-web at the following url:           |
// | http://www.zen-cart.com/license/2_0.txt.                             |
// | If you did not receive a copy of the zen-cart license and are unable |
// | to obtain it through the world-wide-web, please send a note to       |
// | [email protected] so we can mail you a copy immediately.          |
// +----------------------------------------------------------------------+
// $Id: tpl_modules_product_listing.php 1038 2005-03-18 07:09:17Z ajeh $
//
?>
<table border="0" width="100%" cellspacing="2" cellpadding="0">
<?php
// only show when there is something to submit and enabled
    
if ($show_top_submit_button == 'true') {
?>
  <tr>
    <td align="right" colspan="2"><?php echo zen_image_submit(BUTTON_IMAGE_ADD_CARTBUTTON_ADD_CART_ALT);?>
    </td>
  </tr>
<?php
    
// show top submit
?>
<?php 
if ( ($listing_split->number_of_rows 0) && ( (PREV_NEXT_BAR_LOCATION == '1') || (PREV_NEXT_BAR_LOCATION == '3') ) ) {
?>
  <tr>
    <td class="pageresults"><?php echo $listing_split->display_count(TEXT_DISPLAY_NUMBER_OF_PRODUCTS); ?></td>
    <td class="pageresults" align="right"><?php echo TEXT_RESULT_PAGE ' ' $listing_split->display_links(MAX_DISPLAY_PAGE_LINKSzen_get_all_get_params(array('page''info''x''y''main_page'))); ?></td>
  </tr>
<?php
}
?>
  <tr>
    <td colspan="2" class="productlisting">
<?php
  
require($template->get_template_dir('tpl_list_box_content.php',DIR_WS_TEMPLATE$current_page_base,'common'). '/tpl_list_box_content.php');
?>
    </td>
  </tr>
<?php if ( ($listing_split->number_of_rows 0) && ((PREV_NEXT_BAR_LOCATION == '2') || (PREV_NEXT_BAR_LOCATION == '3')) ) {
?>
  <tr>
    <td class="pageresults"><?php echo $listing_split->display_count(TEXT_DISPLAY_NUMBER_OF_PRODUCTS); ?></td>
    <td class="pageresults" align="right"><?php echo TEXT_RESULT_PAGE ' ' $listing_split->display_links(MAX_DISPLAY_PAGE_LINKSzen_get_all_get_params(array('page''info''x''y'))); ?></td>
  </tr>
<?php
  
}
?>
<?php
// only show when there is something to submit and enabled
    
if ($show_bottom_submit_button == 'true') {
?>
  <tr>
    <td align="right" colspan="2">
    <?php echo zen_image_submit(BUTTON_IMAGE_ADD_CARTBUTTON_ADD_CART_ALT);?></form>
    </td>
  </tr>
<?php
    
// show_bottom_submit_button
?>
<?php 
if ($show_top_submit_button == 'true' or $show_bottom_submit_button == 'true') { ?>
</form>
<?php ?>
</table>