hab auch nen problem mit dem design und hab die popupvariante genommen und klappt auch soweit nur wo muss ich nu hier das design rausmachen??

PHP-Code:
<script type="text/javascript">
function popUp5(wintype)
{
  var nwl = (screen.width-630)/2;
  var nwh = (screen.height-580)/2;
  popUp=window.open(wintype, 'slotwindow', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=640,height=590'); 
  popUp.window.focus(); 
}
</script>


<h1>name des games</h1>



    <div id="site_box">
        <p>Da der Slot zu gro&szlig; f&uuml;r unser Layout ist, wird er in einem neuem Fenster ge&ouml;ffnet und ist dort spielbar.</p>
        <p>Viel Erfolg!</p>
        <p><strong><a href="javascript:popUp5('?content=/spiele/BigAmericaVMS1/index')">game spielen (&ouml;ffnet im PopUp)</a></strong></p>
    </div>  
<?
$spielid = "1225054008";
userstatus();


$gameholer = mysql_fetch_array(mysql_query("SELECT * FROM universal_stats WHERE id = $spielid LIMIT 1"));
head("$gameholer[name]");

if ($gameholer[game_aktiv]=='ja')
{

include ("content/spiele/BigAmericaVMS1/universal_params.php");
?>

<center><div align='center'><iframe scrolling='no' align='middle' width='105%'<?=$usa_params["usa_width"]?>' height='<?=$usa_params["usa_height"]?>' frameborder='0' marginheight='0' marginwidth='0' src='content/spiele/BigAmericaVMS1/index2.php'></iframe></div></center><br>
<?
foot();
head('Gewinntabelle');

include ("content/spiele/BigAmericaVMS1/universal-gewinnchance.inc.php");
include ("content/spiele/BigAmericaVMS1/universal-gewinne.inc.php");

        $gewinntabelle = "";


        $k = 0;
        for ($i = 0; $i < $usa_params["count_symbols"]; $i++)
        {
            
            $symb_nr = $i + 1;
            $gewinntabelle .= '<td width="20%" align="center" valign="center"><img border="0" src="content/spiele/BigAmericaVMS1/'.$usa_params["gfxpath_symbol$symb_nr"].'"><br>';
                for ($d = 0; $d <= 2; $d++)
                {
                    $k ++;

                    if ($symb_nr == $usa_params["count_symbols"] and $d == 2) 
                    {
                        $gewinne[$i][$d] = "<b>Jackpott</b>";
                    }
                    elseif ($gewinnfs[$k] == 1)
                    {    
                        $gewinne[$i][$d] = "<b>".$gewinne[$i][$d] . " Freispiele</b>";
                    }
                    else 
                    {
                        $gewinne[$i][$d] = "Einsatz x ".$gewinne[$i][$d];
                    }
                    
                    $gewinntabelle .= $gewinne[$i][$d] . "<br>";
                }
            $gewinntabelle .= "</td>";
            if ($i == 4) {$gewinntabelle .= "</tr><tr>";
            }
        }

?>
<center>

<br>

<?
}

else
{
echo "<br><br><center>Das Spiel befindet sich zur Zeit im Wartungsmodus<br><br>";
}
foot();
if ($gameholer[info_box]=='ja')
{
head('Jackpots & Letzte Gewinner');
 
  if ($gameholer[info_jackpot]=='ja') 
  {
  echo "<br><center><b>Jackpot:</b>
      <table border='0' id='table1' cellspacing='0' cellpadding='2'>
          <tr>
              <td align='center'><b>Aktueller Jackpot</b></td>
          </tr>
          <tr>
              <td align='right'>"; echo number_format($gameholer[jackpot],0,",","."); echo" Lose</td>
          </tr>
      </table>";
  }
  if ($gameholer[info_lastgames]=='ja') 
  {
  echo "<center><br><br><b>Die letzten $gameholer[info_lastgames_anzahl] Gewinner:</b>
      <table border='1' id='table2' cellspacing='0' cellpadding='4'>
          <tr>
              <td>
              <p align='center'><b>User</b></td>
              <td>
              <p align='center'><b>Zeit</b></td>
              <td>
              <p align='center'><b>Einsatz</b></td>
              <td>
              <p align='center'><b>Gewinn</b></td>
          </tr>";
      
  if ($gameholer[cache] == 'ja')
    {
    $logtab = "universal_cache_log";
    }
    else
      {
      $logtab    = "universal_nocache_log";
      }
      
    $res = mysql_query("
            SELECT *
            FROM $logtab
            WHERE gewinn >0
            AND gameid = $spielid
            ORDER BY id DESC
            LIMIT 0 , $gameholer[info_lastgames_anzahl]");
    while ($res2 = mysql_fetch_array($res))     
    {
    echo "<tr>
                <td>
                <p align='center'>$res2[user]</td>
                <td>
                <p align='center'>";echo date("d.m.Y H:i:s",$res2[datum]); echo"</td>
                <td>
                <p align='right'>"; echo number_format($res2[einsatz],0,",","."); echo" Lose</td>
                <td>
                <p align='right''>"; echo number_format($res2[gewinn],0,",","."); echo" Lose</td>
            </tr>";    
                
    }    
  echo "</table>";
  } 
}
foot();
?>