Hallo!
Zum ermitteln der URL des Frames "Content":
parent.Content.location.pathname
ergibt z.B.: /content/start.html
location.href hätte z.B folgendes augegeben. http://www.markus.de/content/start.html
Dann zu /content/ etwas hinzufügen:
parent.Content.location.pathname = lang + parent.Content.location.pathname;
Das dan schön in eine Funktion:
function frameurl(lang, frame)
{
var pn = parent.frames[frame].location.pathname;
parent.frames[frame].location.pathname = lang + pn;
}
In Deinem Fall aufzurufen mit:
frameurl("en", "Content");
Falls Du noch ein Mal einen Knoten hast, dann nur zu!
Thilo