<?php
/*********************************************************************************
* TES is a Time and Expense Management program developed by
* Initechs, LLC. Copyright (C) 2009 - 2010 Initechs LLC.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License version 3 as published by the
* Free Software Foundation with the addition of the following permission added
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
* IN WHICH THE COPYRIGHT IS OWNED BY INITECHS, INITECHS DISCLAIMS THE WARRANTY
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, see http://www.gnu.org/licenses or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* You can contact Initechs headquarters at 1841 Piedmont Road, Suite 301,
* Marietta, GA, USA. or at email address hide@address.com
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU General Public License version 3.
*
* In accordance with Section 7(b) of the GNU General Public License version 3,
* these Appropriate Legal Notices must retain the display od the "Initechs" logo.
* If the display of the logo is not reasonably feasible for technical reasons,
* the Appropriate Legal Notices must display the words "Powered by Initechs".
********************************************************************************/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link rel="shortcut icon" type="image/x-icon"
href="../images/favicon.ico">
<link rel="stylesheet" type="text/css" media="all"
href="../css/tesglobal.css">
<title>Time and Expense Management System</title>
</head>
<body>
<?php
$strtime = time();
$basedir = dirname(__FILE__) . '/..';
require_once("$basedir/initialize.php");
require_once("$basedir/baseclass/RenderPage.php");
?>
<table id='frame' style='position: absolute; left: 0px; top: 0px;'>
<tr>
<!-- Top Bar: Tite Section -->
<td class="top_header">
<table style="width: 100%">
<!-- Top Bar has 1 row and 2 cols -->
<tr>
<td><!-- Logo Section --> <img border=0px width=120px height=40px
src='../images/logo.gif'></td>
<td style="text-align: center"><!-- Heading Section --> <?php
global $ini_array;
$system_description = $ini_array['literal']['system_description'];
echo "<h2>$system_description</h2>";
?></td>
</tr>
</table>
</td>
</tr>
<tr>
<!-- Main Section -->
<td>
<table id='frame'>
<tr>
<td class="right_body"><?php
$page = new mainBody();
echo $page->InstallDatabasePage();
?></td>
</tr>
</table>
</td>
</tr>
<tr>
<!-- Footer Section -->
<td><?php
$timeTaken = time() - $strtime;
settype($timeTaken, "string");
echo "<table id='frame' style='border:none;'><tr><td class='footer'>Copyright 2009-2010 Initechs, LLC.</td>";
echo "<td class='footer'>Server response time: $timeTaken seconds.</td></tr></table>";
?></td>
</tr>
</table>
</body>
</html>