<?php
include('../system/includes/system.php');
$title = 'Нарушения';
if (isset($_GET['act'])) {$act = my_esc($_GET['act']);} else {$act = 'index';}
if (in_array($act, array('add', 'edit', 'delete', 'info')))include('inc/act_'.$act.'.php');
else include('inc/act_index.php');
?>