<?php
error_reporting(E_ERROR | E_WARNING | E_PARSE);
define('_VALID_TTH','1');
include("initcms.php");
$act=$_GET['act'];
if ($act == '' || $act == null) $act = 'home';
//Check show - hide website
echo"";
if($CONFIG["site_offline"] != '0'){  
	$act='offline';
		echo"
			<table width=100% border=0 cellspacing=0 cellpadding=0>
			  <tr>
				<td width=20></td>
				<td align=center>&nbsp;".$CONFIG["offline_content"]."</td>
				<td width=20></td>
			  </tr>
			</table>
		"; 
}

$path="modules/$act.php";
if (file_exists($path)) {
	if($act=='offline'){
		include($path);
}
	elseif($act == "home"){
		include("modules/header.php");
		include($path);
		include("modules/footer.php");
	}
	else{
		include("modules/header.php");
		include($path);
		include("modules/footer.php");
	}
}
include("endcms.php");
?>