<?php if ($products) { ?>
<div class="top">
<div class="left"></div>
<div class="right"></div>
<div class="center">
<div class="heading"><?php echo $heading_title; ?></div>
</div>
</div>
<div class="middle">
<?php foreach ($products as $product) { ?>
<table cellpadding="2" cellspacing="0" width="100%" >
<tr>
<td width="100%"><a href="<?php echo str_replace('&', '&', $product['href']); ?>"><?php echo $product['name']; ?></td></tr></table><table cellpadding="2" cellspacing="0" width="100%" ><tr>
<td width="15%" align="center"><a href="<?php echo str_replace('&', '&', $product['href']); ?>"><img src="<?php echo $product['image']; ?>" alt="<?php echo $product['name']; ?>" /></a><br><?php echo $product['model']; ?> <?php if ($display_price) { ?>
<br />
<?php if (!$product['special']) { ?>
<span style="font-size: 11px; color: #900;"><?php echo $product['price']; ?></span>
<?php } else { ?>
<span style="font-size: 11px; color: #900; text-decoration: line-through;"><?php echo $product['price']; ?></span> <span style="font-size: 11px; color: #F00;"><?php echo $product['special']; ?></span>
<?php } ?>
<a class="button_add_small" href="<?php echo $product['add']; ?>" title="<?php echo $button_add_to_cart; ?>" > </a>
<?php } ?>
<?php if ($product['rating']) { ?>
<br />
<img src="catalog/view/theme/default/image/stars_<?php echo $product['rating'] . '.png'; ?>" alt="<?php echo $product['stars']; ?>" />
<?php } ?></td>
<td valign="top" width="85%"><?php echo $product['shortdescription']; ?></a>
</td>
</tr>
</table><hr>
<?php } ?>
</div>
<div class="bottom">
<div class="left"></div>
<div class="right"></div>
<div class="center"></div>
</div>
<?php } ?>