<?php
include('../system/includes/system.php');
$title = 'Действия';
if (isset($_GET['act'])) {$act = my_esc($_GET['act']);} else {$act = 'index';}
if (in_array($act, array('index', 'do')))include('inc/act_'.$act.'.php');
else include('inc/act_index.php');
ex_foot();
?>