<?php
include('../system/includes/system.php');
$title = 'Дуэли';
if (isset($_GET['act'])) {$act = my_esc($_GET['act']);} else {$act = 'index';}
if (in_array($act, array('info', 'poll', 'my_duel', 'user_duels', 'finished', 'my_call', 'call', 'komm', 'pollen')))include('inc/act_'.$act.'.php');
else include('inc/act_index.php');
ex_foot();
?>