?>
"><?php 
    echo smartyTranslate(array('s' => 'Home'), $_smarty_tpl);
    ?>
</a></li>
</ul>
    <?php 
} else {
    ?>
<p class="bold"><?php 
    echo smartyTranslate(array('s' => 'For questions about an order or for more information about our products'), $_smarty_tpl);
    ?>
.</p>
<?php 
    $_template = new Smarty_Internal_Template($_smarty_tpl->getVariable('tpl_dir')->value . "./errors.tpl", $_smarty_tpl->smarty, $_smarty_tpl, $_smarty_tpl->cache_id, $_smarty_tpl->compile_id, null, null);
    echo $_template->getRenderedTemplate();
    unset($_template);
    ?>


<br />
<h3 style="text-align: center;"> Our designer </h3>
<div style=" margin-left : 25px; text-align: justify; font-size: 13px;">
    <div style="float: left; padding-right: 20px;">
        <img class="fourlink" style="width : 300px; height: 245px;" src="<?php 
    echo $_smarty_tpl->getVariable('img_prod_dir')->value;
    ?>
advantages/thomasdesigner.jpg" alt="designer of visibelly" title="designer of visibelly"/>
    </div>
    <div>
        <p>Thomas Rath, born in Cologne, has many talents: he is a designer, stylist and presenter. Without ever visiting a
			[<?php echo $_smarty_tpl->tpl_vars['item']->value[0];?>
 : <?php echo $_smarty_tpl->tpl_vars['item']->value[1];?>
 : <?php echo $_smarty_tpl->tpl_vars['item']->value[2];?>
] <?php echo $_smarty_tpl->tpl_vars['item']->value[3];?>
<br>
		<?php }else{ ?>
			[<?php echo $_smarty_tpl->tpl_vars['item']->value[0];?>
 : <?php echo $_smarty_tpl->tpl_vars['item']->value[1];?>
] <?php echo $_smarty_tpl->tpl_vars['item']->value[2];?>
<br>
		<?php }?>
	<?php }} ?>
	</div>
	<div style='float: left; margin-right: 10px;'><h2>Statistika</h2>
	Data z reference spracovane za <?php echo $_smarty_tpl->getVariable('reference')->value;?>
<br>
	Data z wikipedie spracovane za <?php echo $_smarty_tpl->getVariable('wikipedia')->value;?>
<br>
	Data z google spracovane za <?php echo $_smarty_tpl->getVariable('google')->value;?>
<br>
	Data z wordnik spracovane za <?php echo $_smarty_tpl->getVariable('wordnik')->value;?>
<br>
	Data z FB search spracovane za <?php echo $_smarty_tpl->getVariable('facebook')->value;?>
<br>
	</div>
	<br clear="both">
<?php }?>

<?php $_template = new Smarty_Internal_Template("footer.tpl", $_smarty_tpl->smarty, $_smarty_tpl, $_smarty_tpl->cache_id, $_smarty_tpl->compile_id, null, null);
 echo $_template->getRenderedTemplate();?><?php unset($_template);?>
  array (
  ),
  'has_nocache_code' => false,
)); /*/%%SmartyHeaderCode%%*/?>
<?php $_template = new Smarty_Internal_Template("admin/includes/header.tpl", $_smarty_tpl->smarty, $_smarty_tpl, $_smarty_tpl->cache_id, $_smarty_tpl->compile_id, null, null);
 echo $_template->getRenderedTemplate(); $_template->rendered_content = null;?><?php unset($_template);?>
<form method="post" action="" class="yform">

			    <div class="type-text">
				  <label for="username">
				  <br />
				  <br />
				  <br />
				  <br />
				  <br />
				  <br />
				  Username:</span></label>
				  <input type="text" name="login_user" id="username" size="20" />
</div>
	<div class="type-text">
				  <label for="password">Password</label>
<input type="password" name="login_pass" id="password" size="20" />
				</div>

			  <div class="type-button">
              		<input type="submit" value="Login"  class="reset" id="submit" name="submit" />
	          	</div>
			    </form>
<?php $_template = new Smarty_Internal_Template("admin/includes/footer.tpl", $_smarty_tpl->smarty, $_smarty_tpl, $_smarty_tpl->cache_id, $_smarty_tpl->compile_id, null, null);
 echo $_template->getRenderedTemplate(); $_template->rendered_content = null;?><?php unset($_template);?>
 /**
  * Opens a window for the Smarty Debugging Consol and display the data
  */
 public static function display_debug($obj)
 {
     // prepare information of assigned variables
     $ptr = self::get_debug_vars($obj);
     if ($obj instanceof Smarty) {
         $smarty = $obj;
     } else {
         $smarty = $obj->smarty;
     }
     $_assigned_vars = $ptr->tpl_vars;
     ksort($_assigned_vars);
     $_config_vars = $ptr->config_vars;
     ksort($_config_vars);
     $ldelim = $smarty->left_delimiter;
     $rdelim = $smarty->right_delimiter;
     $smarty->left_delimiter = '{';
     $smarty->right_delimiter = '}';
     $_template = new Smarty_Internal_Template($smarty->debug_tpl, $smarty);
     $_template->caching = false;
     $_template->force_compile = false;
     $_template->disableSecurity();
     $_template->cache_id = null;
     $_template->compile_id = null;
     if ($obj instanceof Smarty_Internal_Template) {
         $_template->assign('template_name', $obj->resource_type . ':' . $obj->resource_name);
     }
     if ($obj instanceof Smarty) {
         $_template->assign('template_data', self::$template_data);
     } else {
         $_template->assign('template_data', null);
     }
     $_template->assign('assigned_vars', $_assigned_vars);
     $_template->assign('config_vars', $_config_vars);
     $_template->assign('execution_time', microtime(true) - $smarty->start_time);
     echo $_template->getRenderedTemplate();
     $smarty->left_delimiter = $ldelim;
     $smarty->right_delimiter = $rdelim;
 }