<?php
//<meta http-equiv="Content-Type" content="text/html; charset=windows-1250" />

include_once ("paths.php");
include_once (TO_HOME . "include/config.php");
include_once (TO_HOME . "include/template.inc");
include_once (TO_HOME . "include/functions.php");

$tpl = new Template(TO_HOME . 'templates');


$tpl->set_file('normal', 'normal.html');
$tpl->set_block('normal', 'body_content_tpl', 'body_content');
$tpl->set_file('body_content', MODUL . '.html');
$tpl->loadfile('body_content');

$time = date("YmdHis");

for($i=0; $i<=14; $i++){
	
	$tpl->set_var("TIME_" . $i, make_digit(substr($time, $i, 1)));
}


$tpl->set_var("HOME", HOME);
$tpl->set_var("CSS_" . strtoupper(MODUL), "_on");

$tpl->pparse('output', 'normal');
?>