<?php
include('../system/includes/system.php');
if_user('is_reg');
$title = 'Почта';
if (isset($_GET['act'])) {$act = my_esc($_GET['act']);} else {$act = 'index';}
if (in_array($act, array('cont', 'new_message')))include('inc/act_'.$act.'.php');
else include('inc/act_index.php');
ex_foot();
?>