// $start = microtime();
define('APP_DIR', dirname(__FILE__).'/');
include('inc/init.php');
$urlOB = new kit_core_url();
$urlOB->getGET();
if (!isset($_GET[$urlOB->getKey])) {
header('Location: index.htm');
exit;
}
$item = new kit_core_item_std($_GET[$urlOB->getKey]);
echo $item->printItem();
/*
$stop = microtime();
echo 'Timp start: '.$start.'
';
echo 'Timp stop: '.$stop.'
';
echo 'Timp de executie: '.($stop-$start).'
';
*/
?>