Vielleicht eine umständliche Lösung ... aber sie sollte funktionieren ...
eine NEUE datei schreiben (z.b. index.htm)
und in den <body>-tag ein onLoad="" einbauen und zusätzlich ein javaSkript definieren ...
<script>
function reLoad(){ top.mainFrame.location.href="xyz.php?id=45"; }
</script>
<body onLoad=reLoad()>
</body>
P.S. top.mainFrame.location.href="xyz.php?id=45";
MUSST DU NATÜRLICH NOCH ANPASSEN!
Hannes