<?php
ob_start();
session_start();
if ($_GET['get'] == '')
{
$
url = '';
}
else
{
$
url = $_GET['get'];
}
?>
<
html>
<head>
<title>Index</title>
<meta http-equiv="Content-Type" content="text/
html; charset=iso-8859-1">
<link href="main.css" rel="stylesheet" type="text/css">
</head>
<body link="#0000FF" vlink="#0000FF" alink="#0000FF">
<table width="100%" border="0" bgcolor="#409DFB" class="mainborder">
<tr>
<td>
<table width="100%" border="0">
<tr>
<td width="18%" valign="top" bgcolor="BCEFFE" class="leftrightborder">
<table width="100%" border="0" class="subborder">
<tr>
<td class="headfont">Navigation</td>
</tr>
<tr>
<td class="navlink">[
url="/index.php?get=news"]News[/
url]</td>
</tr>
</table>
<table width="100%" border="0">
<tr>
<td>
<?php
if (!$login)
{
include('login.php');
}
?>
</td>
</tr>
</table>
</td>
<td width="64%" valign="top" class="subborder">
<table width="100%" border="0">
<tr>
<td>
<?php
if ($
url != '')
{
include($
url . '.php');
}
?></td>
</tr>
</table>
</td>
<td width="18%" valign="top" bgcolor="BCEFFE" class="leftrightborder">
<table width="100%" border="0">
<tr>
<td>
<?php
if ($login)
{
include('admin/info.php');
}
?></td>
</tr>
</table>
</td>
</tr>
</table></td>
</tr>
</table>
</body>
</
html>
<?php
ob_end_flush();
?>