var productsListTemplate = '<table cellpadding="0" cellspacing="0">\n{for product in list}\n{if product_index % 6 == 0}\n<tr>\n{/if}\n<td class="product">\n<table id="product#${product.prd_id}" class="product{if product_index == 0} selected{/if}{if product.empty} empty{/if}" cellpadding="0" cellspacing="0">\n<tr>\n<td class="thumb"><div>{if product.empty}&nbsp;{else}<a href="javascript:void(0)" onclick="VITRINE.select(${product_index});return false"><img src="data/images/${product.prd_image_thumb}" alt="Image of ${product.prd_name}" title=""></a>{/if}</div></td>\n</tr>\n<tr>\n<td class="caption" height="22"><div>{if product.empty}&nbsp;{else}${formatProductNameHTML(product.prd_name, 13)|HTML}{/if}</div></td>\n</tr>\n</table>\n</td>\n{if product_index % 6 != 5}\n<td class="seperator">&nbsp;</td>\n{/if}\n{if product_index % 6 == 5}\n</tr>\n{/if}\n{/for}\n</table>'