So:
function lademain(){
parent.mainframe.location.href="main.html";
}Und dann:
<body onLoad="MTMStartMenu(); lademain()">
So sollte es eigentlich klappen.
Auch wenn ich es GENAU so gemacht hab kommt noch immer die Fehlermeldung parent.mainframe.location is not an object
Hallo!
Mensch, jetzt ist mir der Fehler aufgefallen. Location gehört zum Document-Objekt. Also sollte es heißen: parent.mainframe.document.location.href
Gruß, Jan