<?php
if (!eregi("modules.php", $_SERVER['PHP_SELF'])) {
die ("You can't access this file directly...");
}
if(!is_user($user)) {
Header("Location: modules.php?name=Your_Account");
exit();
}
$module_name = basename(dirname(__FILE__));
$index = 0;
include("header.php");
include('modules/FlashChat/inc/flashChatTag.php');
?>
<center><?=flashChatTag('650', '450', array(), 'modules/FlashChat/')?></center>
<?php
include("footer.php");
?>