curious: Problem mit Wechseln von zwei Frames!

Beitrag lesen

Ich habe folgendes script in die menüleiste meiner hp eingebaut:
<script language="JavaScript">
<!--
function home()
{
parent.leiste.location = "leiste_home.php";
parent.inhalt.location = "home.php";
}
function bilder()
{
parent.leiste.location = "leiste_bilder.php";
parent.inhalt.location = "bilder.htm";
}
function partys()
{
parent.leiste.location = "leiste_partys.php";
parent.inhalt.location = "partys.htm";
}
function forum()
{
parent.leiste.location = "leiste_forum.php";
parent.inhalt.location = "http://web219.can13.de/wbboard/main.php";
}
function gaestebuch()
{
parent.leiste.location = "leiste_gb.php";
parent.inhalt.location = "http://web219.can13.de/burningbook/index.php";
}
function event()
{
parent.leiste.location = "leiste_event.php";
parent.inhalt.location = "event.htm";
}
function links()
{
parent.leiste.location = "leiste_links.php";
parent.inhalt.location = "links.htm";
}
function impressum()
{
parent.leiste.location = "leiste_impressum.php";
parent.inhalt.location = "impressum.htm";
}
--></script>

Verlinkt sind meine Menüpunkte auf folgende Art und Weise: javascript:home(). Es klappt eigentlich alles soweit, die zwei Frames wechseln optimal nur muss ich immer zweimal auf die Link-Button klicken, damit die Seiten laut Statusanzeige vollständig geladen sind. Die Seiten sind zwar auch schon beim ersten klick vollständig geladen, allerdings laut statusanzeige nicht. Kann mir jemand weiterhelfen??