Jens Müller: Reload Button Automatisch

Hi Forumer
Ich wollte mir fürs Forum ein Frameset zusammen basteln, welches Automatisch das Forum nach 15 Minuten neu läd. Meine Idee war eine Javascriptfunktion z schreiben welche aus einem Unsichtbaren Frame das Forum neu läd.

Forum.html:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 FRAMESET//EN">

<html>
<head>
<title>SELFHTML aktuell: SELFHTML Forum</title>
</head>

<frameset rows="0,*" framespacing="0" border="0" frameborder="0">
  <frame name="Oben" src="blank.html" scrolling="no">
  <frame name="Unten" src="http://www.teamone.de/selfaktuell/self_forum.html" scrolling="yes">
  <noframes>
  <body>

</body>
  </noframes>
</frameset>

</html>

in der datei blank.html  Die Zeile:

<body OnLoad="parent.frames[1].reload(1200);">

Leider bekomme ichm eine Fehlermeldungen vom Navigator:

JavaScript Error: file:/C/Windows/Desktop/blank.html, line 8:

parent.frames[1].reload is not a function.

Was mache ich falsch?