$template = @mysql_fetch_assoc(mysql_query("SELECT * from _mod_wbg_products_templates WHERE id='".$_CFG['current_category']['products_template_id']."'"));
$template['title'] = $template ? $template['title'] : 'Не установлен';

$html_TemplateSelect = '
<div style="background:#bbbbbb; padding:10px; margin-bottom:10px">
	Используемый шаблон для продуктов: <b style="color:#ffffff; margin-right:10px">['.$template['title'].']</b>
	<input type="button" name="" value="Сменить шаблон" class="button" onclick="open_popup(\''.$_CFG['current_category']['module_dir'].'../wbg_products_templates/popup.select_template.php?id='.$_CFG['current_category']['id'].'\', 800, 500)"/>
</div>';

echo $html_TemplateSelect;