Hmm... i just looked at the view source code and the real doesn't look like that, it looks like this:
<html>
<body>
<link href="style.css" rel="stylesheet" type="text/css">
<?php
require_once "maincore.php";
require_once "subheader.php";
require_once "side_left.php";
include LOCALE.LOCALESET."squad.php";
include('mysql_connect.php');
$pl_header .=<<<SIF
<table width='100%' class='main-body'>
<tr>
<td>
<table width='100%'>
<tr align='left' class='table-cellpic'>
<th colspan='7'>Spillertrup 2006/2007</th>
</tr>
</table>
<table width='100%'>
<tr>
<td>
<span style="vertical-align:top;"><font face="Verdana" size="+1" color="#000000">
<table align='left' cellpadding='2' cellspacing='2'>
<tr align='left'>
<td></td>
<th align='center'>Nr</th>
<td></td>
<th>Navn</th>
</tr>
SIF;
$result = mysql_query("SELECT pl_id, pl_name, pl_pos, pl_pic, pl_shirt, pl_side FROM squad ORDER BY pl_shirt");
while ($row = mysql_fetch_array($result))
{
$pl_shirt = $row['pl_shirt'];
$pl_pic = $row['pl_pic'];
$pl_id = $row['pl_id'];
$pl_name = $row['pl_name'];
$pl_pos = $row['pl_pos'];
$pl_side = $row['pl_side'];
$pl_details .=<<<SIF
<tr>
<td class='squad_border' align='center'>
<IMG SRC='../images/squad/$pl_pic' WIDTH='50' HEIGHT='50' ALT=''>
</td>
<td class='squad_border' align='center' width='55'><span style="text-transform: uppercase;"><strong><b><font face="Century" size="+3">$pl_shirt</font></b></strong></span></td>
<td class='squad_border' width='10'><img src='../images/blank.gif'></td>
<td class='squad_border' ><a href='squad_details.php?pl_id=$pl_id'title='Klik her, for at få mere info om $pl_name'>$pl_name</a><br><br>$pl_pos: $pl_side</td>
<td class='squad_border'></td>
</tr>
SIF;
}
$pl_details_2 .=<<<SIF
</table>
</td>
<td align='right'>
<table width='50%'>
<tr>
<td><img src='../images/squad/holdfoto_2005.jpg' width='500' heigth='300'></td>
</tr>
<tr>
<td><br><br><br></td>
</tr>
<tr>
<td><h2>Trænerstaben 2006/2007</h2></td>
</tr>
<tr>
<td><br><br>Tissemand</td>
</tr>
<tr>
<td><br><br>Tissemand</td>
</tr>
<tr>
<td><br><br>Tissemand</td>
</tr>
<tr>
<td><br><br>Tissemand</td>
</tr>
<tr>
<td><br><br>Tissemand</td>
</tr>
<tr>
<td><br><br>Tissemand</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
SIF;
$player=<<<PLAYER
$pl_header
$pl_details
$pl_details_2
PLAYER;
echo $player;
require_once "side_right.php";
require_once "footer.php";
?>
</body>
</html>