$_s = $HTTP_GET_VARS['s'];
include_once("includes/config.inc.php");
if ( (strstr($_s, '.')) || (strstr($_s, '/')) )
$_s = 'home';
if ( !file_exists("includes/$_s.php") )
$_s = 'home';
if ( !empty($_CONFIGS['menu'][$_s]) )
$title = $_CONFIGS['company']." - ".$_CONFIGS['menu'][$_s]." - ".$_CONFIGS['title'];
include_once("includes/header.inc.php");
if ( $_s<>'home' ) echo "
";
include_once("includes/$_s.php");
if ( $_s<>'home' ) echo "
";
include_once("includes/footer.inc.php");
?>