Bueno, esa no es la forma de mostrarlo...
Si insistes en mostrarlo con frames, deberas hacer OTRA pagina PHP llamada juego.php
En verjuego.php cambialo así...
Código PHP:
<?
$juego=$_GET['ID'];
echo <<< HTML
<html>
<head>
<title>juego $nombre</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="20,*" frameborder="NO" border="0" framespacing="0">
<frame name="topFrame" scrolling="NO" noresize src="frame.html" >
<frame name="mainFrame" src="juego.php?juego=$juego">
</frameset>
<noframes>
<body>
Tu navegador no soporta frames. no se puede visualizar el enlace.
</body>
</noframes>
</html>
HTML;
?>