1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
<table width="800" height="1000" border="0" cellspacing="0" cellpadding="0">
<tr height="322">
<td style="padding: inherit;" width="100%" colspan="2">
<a href="index.php"><img style="border: 0;" src="images/header.png" alt="Header" usemap="#Map1" /></a>
</td>
</tr>
<tr height="286">
<td width="146">
<img style="border: 0;" src="images/navigation.png" alt="Menu" usemap="#Map2" />
</td>
<td width="654" rowspan="2">
<?
if (isset($_GET['page'])) {
$p = "includes/".$_GET['page'].".php";
if (file_exists($p)) {
include ("$p"); }
else {
include ("includes/news.php");}}
else {
include ("includes/news.php");}
?>
</td>
</tr>
<tr height="280">
<td width="146">
<img style="border: 0;" src="images/partenaires.png" alt="Partenaires" usemap="#Map3" />
</td>
</tr>
<tr height="112">
<td width="100%" colspan="2"><img style="border: 0;" src="images/footer.png" alt="Footer" /></td>
</tr>
</table> |