// Get u language
$G_lang = explode(',',$_SERVER['HTTP_ACCEPT_LANGUAGE']);
switch ($G_lang[0]) {
case 'zh-hk':
case 'zh-tw':
case 'zh-mo':
case 'zh-cn':
include('lang.zh.inc.php');
$indexfile = 'main_zh.htm';
break;
default:
include('lang.en.inc.php');
$indexfile = 'main_en.htm';
}
// If lastupdate less than five hours then update
if ($filedate<18000 && filesize($indexfile)<>0 && empty($_GET['update'])) {
require($indexfile);
exit();